diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 1e4bafa..641bf89 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -1,17 +1,16 @@
-
+
+
+
-
-
-
@@ -77,13 +76,6 @@
1668505503001
-
- 1668505583653
-
-
-
- 1668505583653
-
1668536872142
@@ -420,7 +412,14 @@
1680255185050
-
+
+ 1680635631969
+
+
+
+ 1680635631969
+
+
@@ -435,7 +434,6 @@
-
@@ -460,6 +458,7 @@
-
+
+
\ No newline at end of file
diff --git a/Attestation_Certificat.py b/Attestation_Certificat.py
index 1b3d753..c66a0e2 100644
--- a/Attestation_Certificat.py
+++ b/Attestation_Certificat.py
@@ -110,6 +110,13 @@ def GetSpecificPartnerAttestation_Certificat(diction):
return False, "Impossible de recuperer les données de ce template"
+ if ("preview_url" not in diction.keys()):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + " Cette session n'a pas de 'preview_url' sur le modele d'attestation ")
+ return False, " Cette session n'a pas de 'preview_url' sur le modele d'attestation "
+
+
RetObject.append(mycommon.JSONEncoder().encode(ret_val))
diff --git a/Inscription_mgt.py b/Inscription_mgt.py
index d3438d4..a4363e9 100644
--- a/Inscription_mgt.py
+++ b/Inscription_mgt.py
@@ -256,26 +256,26 @@ def UpdateStagiairetoClass(diction):
mytoken = ""
if ("token" in diction.keys()):
if diction['token']:
- mytoken = diction['token']
+ mytoken = str(diction['token']).strip()
#query_key['token'] = diction['token']
myemail = ""
if ("email" in diction.keys()):
if diction['email']:
- myemail = diction['email']
- query_key['email'] = diction['email']
+ myemail = str(diction['email']).strip()
+ query_key['email'] = str(diction['email']).strip()
myinternal_url = ""
if ("class_internal_url" in diction.keys()):
if diction['class_internal_url']:
- myinternal_url = diction['class_internal_url']
- query_key['class_internal_url'] = diction['class_internal_url']
+ myinternal_url = str(diction['class_internal_url']).strip()
+ query_key['class_internal_url'] = str(diction['class_internal_url']).strip()
mysession_id = ""
if ("session_id" in diction.keys()):
if diction['session_id']:
- mysession_id = diction['session_id']
- query_key['session_id'] = diction['session_id']
+ mysession_id = str(diction['session_id']).strip()
+ query_key['session_id'] = str(diction['session_id']).strip()
partner_recid = mycommon.get_parnter_recid_from_token(mytoken)
@@ -290,49 +290,49 @@ def UpdateStagiairetoClass(diction):
if ("nom" in diction.keys()):
if diction['nom']:
- mydata['nom'] = diction['nom']
- user_nom = diction['nom']
+ mydata['nom'] = str(diction['nom']).strip()
+ user_nom = str(diction['nom']).strip()
if ("price" in diction.keys()):
if diction['price']:
- mydata['price'] = diction['price']
+ mydata['price'] = str(diction['price']).strip()
if ("employeur" in diction.keys()):
if diction['employeur']:
- mydata['employeur'] = diction['employeur']
+ mydata['employeur'] = str(diction['employeur']).strip()
user_prenom = ""
if ("prenom" in diction.keys()):
if diction['prenom']:
- mydata['prenom'] = diction['prenom']
- user_prenom = diction['prenom']
+ mydata['prenom'] = str(diction['prenom']).strip()
+ user_prenom = str(diction['prenom']).strip()
if ("telephone" in diction.keys()):
if diction['telephone']:
- mydata['telephone'] = diction['telephone']
+ mydata['telephone'] = str(diction['telephone']).strip()
if ("modefinancement" in diction.keys()):
if diction['modefinancement']:
- mydata['modefinancement'] = diction['modefinancement']
+ mydata['modefinancement'] = str(diction['modefinancement']).strip()
if ("opco" in diction.keys()):
if diction['opco']:
- mydata['opco'] = diction['opco']
+ mydata['opco'] = str(diction['opco']).strip()
if ("price" in diction.keys()):
if diction['price']:
- mydata['price'] = diction['price']
+ mydata['price'] = str(diction['price']).strip()
new_status = ""
if ("status" in diction.keys()):
if diction['status']:
- mydata['status'] = diction['status']
- new_status = diction['status']
+ mydata['status'] = str(diction['status']).strip()
+ new_status = str(diction['status']).strip()
if ("comment" in diction.keys()):
if diction['comment']:
- mydata['comment'] = diction['comment']
+ mydata['comment'] = str(diction['comment']).strip()
"""
@@ -479,9 +479,10 @@ def UpdateStagiairetoClass(diction):
new_diction['password'] = secrets.token_urlsafe(6)
new_diction['locked'] = "0"
- split_mail_tab = str(myemail).split('@')
- new_diction['username'] = split_mail_tab[0]
+ #split_mail_tab = str(myemail).split('@')
+ #new_diction['username'] = split_mail_tab[0]
+ new_diction['username'] = myemail
local_status, local_message, local_participant_lms_id = mys_lms.Create_MySy_LMS_Apprenant(new_diction)
@@ -1400,7 +1401,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None):
#print(" Lecture du fichier : "+saved_file)
nb_line = 0
- df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';')
+ df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore')
# Dictionnaire des champs utilisables
'''
@@ -2754,6 +2755,10 @@ def Send_LMS_Credentials_to_particpants(diction):
email_data['course_owner_email'] = my_partner['email']
email_data['partner_recid'] = my_partner['recid']
+ #split_mail_tab = str(email).split('@')
+ #email_data['login'] = split_mail_tab[0]
+
+
local_status, local_message = email_session.LMS_Credential_Sending_mail(email_data)
if (local_status is False):
mycommon.myprint(str(
diff --git a/Log/log_file.log b/Log/log_file.log
index a5b5166..cb9ea75 100644
--- a/Log/log_file.log
+++ b/Log/log_file.log
@@ -1553608,3 +1553608,2592 @@ INFO:werkzeug:127.0.0.1 - - [04/Apr/2023 20:47:38] "POST /myclass/api/LMS_Get_Pa
INFO:werkzeug:127.0.0.1 - - [04/Apr/2023 20:47:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
INFO:root:2023-04-04 20:47:38.774250 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [04/Apr/2023 20:47:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+DEBUG:filelock:Attempting to acquire lock 1666508043344 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666508043344 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1666508043344 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666508043344 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1666508079760 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666508079760 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 10:06:22.654059 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 10:06:22.654059 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 10:06:22.654059 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 10:06:22.655054 : ++ 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
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1666508079760 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666508079760 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1666430280208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666430280208 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1666430280208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1666430280208 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2115525047056 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115525047056 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2115525047056 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115525047056 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2115525047632 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115525047632 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 10:06:30.745350 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 10:06:30.745350 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 10:06:30.745350 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 10:06:30.745350 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2115525047632 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115525047632 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2115529356112 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115529356112 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2115529356112 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2115529356112 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 11:34:42.339816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:42.343829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:42.345829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:43.134329 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:43.138327 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:43.985311 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:43.989310 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:43.993315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:43.997307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.003313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.007311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.012315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.019308 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.025309 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.030312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.035313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.042307 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.044314 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.050333 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.056331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.059844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.063854 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.066857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:34:44.070858 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:34:44.073859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:02.211043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:02.860704 : partner_login Connexion partnair mysy1000formation@gmail.com : OK, Date : 2023-04-05 11:35:02.214519 , _id = 63d168b1da18f633b8053b6a
+INFO:root:2023-04-05 11:35:02.864707 : partner_login Connexion partener_token : OK , _id = 63d169b8a18e0689a1336d32
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:03.023724 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:03.027723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:03.031724 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:03.036725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:03.038725 : Connexion du partner recid = a97b61d78f194cd37d3e18ed634c3f623de92d3658f7803691 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:03.059718 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 1789
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:03.314071 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:06.179549 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:06.181555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:06.188098 : Connexion du partner recid = a97b61d78f194cd37d3e18ed634c3f623de92d3658f7803691 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35: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_NEhvSySzsgrsOA/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_NEhvSySzsgrsOA/payment_methods?type=card response_code=404
+DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such customer: \'cus_NEhvSySzsgrsOA\'; a similar object exists in live mode, but a test mode key was used to make this request.",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_aDYtZNFh0pwzqu?t=1680687306",\n "type": "invalid_request_error"\n }\n}\n' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_aDYtZNFh0pwzqu message='Dashboard link for request'
+INFO:stripe:error_code=resource_missing error_message="No such customer: 'cus_NEhvSySzsgrsOA'; a similar object exists in live mode, but a test mode key was used to make this request." error_param=id error_type=invalid_request_error message='Stripe API error received'
+INFO:root:2023-04-05 11:35:06.590001 : get_customer_payement_cards -Request req_aDYtZNFh0pwzqu: No such customer: 'cus_NEhvSySzsgrsOA'; a similar object exists in live mode, but a test mode key was used to make this request. - ERRORRRR AT Line : 140
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:06] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:24.772137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:24.773138 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:24.775134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:24] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:24] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:24] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.144429 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.146433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.535853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.538859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.541855 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.544851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.548853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.550852 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.555852 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.559854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.562853 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.565852 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.568855 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.572853 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.576852 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.577852 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.582858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.585855 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.591851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:25.595851 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.597850 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:25.599854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:32.586329 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:32.590327 : partner_login Connexion partnair contact@mysy-training.com : OK, Date : 2023-04-05 11:35:32.586329 , _id = 641c21666cad03956ab28252
+INFO:root:2023-04-05 11:35:32.594329 : partner_login Connexion partener_token : OK , _id = 641c23520d5d7f136a823b3c
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:32.696665 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:32.699659 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:32.702659 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:32.706662 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:32.711672 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:32.956384 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:32] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:35:53.109847 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:35:53.201510 : add_class_mass - Vous avez atteint le nombre maximum de formation autorisé
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:35:53] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:36:03.370582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:36:03.373581 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:36:03.376730 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:36:03.380222 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:36:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:36:03.386443 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:36:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:36:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:36:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:36:03.981513 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:36:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:38:38.276568 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:38:38.296100 : add_class_mass - Vous avez atteint le nombre maximum de formation autorisé
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:38:38] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:38:45.063939 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:38:45.065934 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:38:45.068935 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:38:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_NZuiEjjPZ6CP06/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_NZuiEjjPZ6CP06/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1Mol8jAbmaEugrFTZg2P5ePQ",\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": "mysy demo",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1679566381,\n "customer": "cus_NZuiEjjPZ6CP06",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_NZuiEjjPZ6CP06/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_e5BPUdKvhrm1qb message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:38:45] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:38:49.252437 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:38:49.254438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:38:49] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:38:49] "POST /myclass/api/Get_Active_Ftions_Mysy_and_Lms/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:38:53.705007 : 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
Facture \n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\tMySy Demo 2303 \n\t\t\t\t\t2 place du test \n\t\t\t\t\t75001 Paris \n\t\t\t\t\tFrane \n\n\t\t\t\t
\n\n\n\t\t\t\t
\n\n\t\t\t\t\tFacture n° FACT_234000222\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: 05/04/2023 \n\t\t\t\t\t\tDate échéance : 05/04/2023 \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_00d7xK\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\t10 \n\t\t\t\t\t\t\t90 \n\t\t\t\t\t\t\t900.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\t900.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\t180.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\t1080.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\t\t\n\n\t\t\t
MySy Training \n\n\t\t\t\tCour du Havre 1, 75008, Paris \n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t
\n\t\t
\n\t \n\n\n'
+ dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_234000222.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): 0x8f602f10
+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_234000222.pdf', 'wb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_234000222.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_234000222.pdf')
+INFO:root:2023-04-05 11:39:01.063780 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_234000222.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_234000222.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:2023-04-05 11:39:01.065790 : Impression facture N° FACT_234000222 OK
+INFO:root:2023-04-05 11:39:01.080811 : UpdataPartnerRankingClass - Le RANKING de 4 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2023-04-05 11:39:01.071803'}
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:01] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:01.268694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:39:01.271681 : Security check : IP adresse '127.0.0.1' connected
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1MolBgAbmaEugrFTOiroBxMJ
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1MolBgAbmaEugrFTOiroBxMJ response_code=200
+DEBUG:stripe:body='{\n "id": "sub_1MolBgAbmaEugrFTOiroBxMJ",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1679566564,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "cancellation_details": {\n "comment": null,\n "feedback": null,\n "reason": null\n },\n "collection_method": "charge_automatically",\n "created": 1679566564,\n "currency": "eur",\n "current_period_end": 1682244964,\n "current_period_start": 1679566564,\n "customer": "cus_NZuiEjjPZ6CP06",\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_NZv1jqWdZAlFeU",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1679566564,\n "metadata": {},\n "plan": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 9000,\n "amount_decimal": "9000",\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\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": "exclusive",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 9000,\n "unit_amount_decimal": "9000"\n },\n "quantity": 4,\n "subscription": "sub_1MolBgAbmaEugrFTOiroBxMJ",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MolBgAbmaEugrFTOiroBxMJ"\n },\n "latest_invoice": "in_1MolBgAbmaEugrFTDL0rDnV2",\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_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 9000,\n "amount_decimal": "9000",\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 4,\n "schedule": null,\n "start_date": 1679566564,\n "status": "active",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_settings": {\n "end_behavior": {\n "missing_payment_method": "create_invoice"\n }\n },\n "trial_start": null\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_LawDdwZtDHhVVm message='Dashboard link for request'
+INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/subscriptions/sub_1MolBgAbmaEugrFTOiroBxMJ
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=proration_behavior=create_prorations&items[0][id]=si_NZv1jqWdZAlFeU&items[0][quantity]=10
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:01] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 -
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1MolBgAbmaEugrFTOiroBxMJ response_code=200
+DEBUG:stripe:body='{\n "id": "sub_1MolBgAbmaEugrFTOiroBxMJ",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1679566564,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "cancellation_details": {\n "comment": null,\n "feedback": null,\n "reason": null\n },\n "collection_method": "charge_automatically",\n "created": 1679566564,\n "currency": "eur",\n "current_period_end": 1682244964,\n "current_period_start": 1679566564,\n "customer": "cus_NZuiEjjPZ6CP06",\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_NZv1jqWdZAlFeU",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1679566564,\n "metadata": {},\n "plan": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 9000,\n "amount_decimal": "9000",\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\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": "exclusive",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 9000,\n "unit_amount_decimal": "9000"\n },\n "quantity": 10,\n "subscription": "sub_1MolBgAbmaEugrFTOiroBxMJ",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MolBgAbmaEugrFTOiroBxMJ"\n },\n "latest_invoice": "in_1MolBgAbmaEugrFTDL0rDnV2",\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_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 9000,\n "amount_decimal": "9000",\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 10,\n "schedule": null,\n "start_date": 1679566564,\n "status": "active",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_settings": {\n "end_behavior": {\n "missing_payment_method": "create_invoice"\n }\n },\n "trial_start": null\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_2NFrJAI9m8pufQ message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:02] "POST /myclass/api/strip_update_subscription_qty/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:31.423379 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 41 9
+DEBUG:PIL.PngImagePlugin:STREAM b'iTXt' 62 2585
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 2659 10234
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 41 9
+DEBUG:PIL.PngImagePlugin:STREAM b'iTXt' 62 2585
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 2659 10234
+INFO:root:2023-04-05 11:39:31.593366 : external_code = MYSY_Demo_001 ==> Gestion des Base des Données
+INFO:root:2023-04-05 11:39:32.337090 : La formation indexée (champ title) =642d41d3b6050f596fa93b57
+INFO:root:2023-04-05 11:39:32.337090 : 1 ont été indexes => title
+INFO:root:2023-04-05 11:39:32.597142 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Demo_001
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:32] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:43.166160 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:43.237681 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:49.343268 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:39:49.347277 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:39:49.349267 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:49] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:39:49] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:41:11.569607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:41:11.572410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:41:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:41:11.577403 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:41:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:41:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:44:14.641224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:44:14.648229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:44:14.651224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:14] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:14] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:44:26.959606 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:44:26.964602 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:44:26.967606 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:26] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:44:26] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:01.932169 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:01.933168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:01.935166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.615285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.617288 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.916614 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.919615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.922764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.927762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.931289 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.934286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.939288 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.942815 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.947813 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.952344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.957341 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.960348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.965866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.968871 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.972880 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.977216 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:02.981213 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.986476 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.991474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:02.994475 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:24.255578 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:24.259110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:24.263111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:24] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:24] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:45:38.104750 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:38.107753 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:45:38.110750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:45:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:47:32.536611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:32] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:47:33.124052 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:47:36.191712 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:47:36.194707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:47:36.198208 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:47:36.204210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:36] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:47:36.208212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:47:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:48:15.645224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:48:15] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:48:16.050837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:48:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:29.013092 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:31] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:32.112154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:32.444658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:49:32.447656 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:49:32.450667 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:32] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:51.391868 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:49:52.273094 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 11:49:52.306626 : Add_User_To_LMS_Class - Cette formation n'est pas valide/active
+INFO:root:2023-04-05 11:49:52.309628 : UpdateStagiairetoClass WARNING : Impossbile de finaliser l'incription dans le LMS
+INFO:root:2023-04-05 11:49:52.309628 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:52] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:52.646042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:52.906235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:49:52.909244 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:49:52.913230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:52] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:49:56.590465 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:49:56] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:50:25.257010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:50:25.260014 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:50:25.269724 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:50:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:50:25.274720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:50:25.278722 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:50:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:50:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:50:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:50:25.820992 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:50:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:06.329868 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:54:06.333872 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:06.340870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:12.777232 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:54:12.781227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:12.787226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:54:12.792244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:12] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:12.803266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:54:14.223661 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:54:14.251459 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:54:14] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:57:12.755515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:57:12.759535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:57:12.762520 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:57:29.230480 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:29] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:57:31.184719 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:31] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:57:31.758802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 11:57:36.448365 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:57:36.452363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 11:57:36.455364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:36] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 11:57:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:31:40.211748 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:31:40.231814 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:31:40] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:32:35.106859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:32:35.118184 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 296: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:32:35] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:33:04.133202 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:33:04.146426 : add_class_mass -'utf-8' codec can't decode byte 0xe0 in position 344: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:33:04] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:33:40.906779 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:33:40.914360 : add_class_mass -'utf-8' codec can't decode byte 0xe0 in position 344: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:33:40] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:33:56.689126 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:33:56.698555 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 445: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:33:56] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:35:15.869301 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:35:15.878526 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:35:15] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:36:50.764439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:36:50.791747 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:36:50] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:40.353635 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:40.358045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:40.361048 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.254154 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.256166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.673865 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.678391 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.683392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.686927 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.690940 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.694951 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.699075 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.703068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.706073 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.712602 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.715595 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.720153 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.725138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.729661 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.732676 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.734678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.741184 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.750203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:41.753516 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:41.755517 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:51.299977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:47:51.303985 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:47:51.307522 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:47:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:32.724386 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:32.847186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:32] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:38.532307 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:55:38.537835 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:55:38.541833 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:42.755770 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:55:42.759422 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:55:42.760946 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:42.765351 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:55:42.767358 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:42] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:55:44.038970 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:55:44] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:56:22.669028 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:56:22] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:56:29.506585 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:56:30] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:59:16.248798 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:16.716868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:59:16.921880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:16.924456 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:16.928505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:16] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:17] "POST /myclass/api/SendTrainingEvaluationEmail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:59:44.318487 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:44.319010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:44.320040 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:44.323030 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:44] "POST /myclass/api/MySyckeckEvaluationToken/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:59:44.835925 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:44] "[33mPOST /myclass/api/ckeckEvaluationToken/ HTTP/1.1[0m" 404 -
+INFO:root:2023-04-05 12:59:45.132094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 12:59:45.134643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 12:59:54.914062 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 12:59:55] "POST /myclass/api/Evaluation_Class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 13:00:03.575972 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 13:00:03.579195 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 13:00:03.583203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:03] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 13:00:06.700770 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 13:00:06.706595 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 13:00:06.711597 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:06] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 13:00:06.716421 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 13:00:06.718411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 13:00:07.980490 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 13:00:07] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+DEBUG:filelock:Attempting to acquire lock 1556717943184 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1556717943184 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1556717943184 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1556717943184 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1556717944272 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1556717944272 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 14:34:34.466455 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 14:34:34.466455 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 14:34:34.466455 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 14:34:34.466455 : ++ FLASK PORT 5001 ++
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1556717944272 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1556717944272 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1556627542864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Lock 1556627542864 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1556627542864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1556627542864 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2930083019152 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083019152 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2930083019152 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083019152 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2930083019536 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083019536 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 14:34:50.623541 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 14:34:50.623541 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 14:34:50.624544 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 14:34:50.624544 : ++ FLASK PORT 5001 ++
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2930083019536 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083019536 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2930083020496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083020496 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2930083020496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2930083020496 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 14:34:50.928842 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:50.930885 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:50.932433 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:50.934431 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:50.937436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:50] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:51.478909 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:51.791012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:51.791012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:51.792018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:51.793004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:51.795013 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:51.805024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.105096 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.113087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:52.114095 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.125631 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:52.126640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:52.126640 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.422616 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.428621 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:52.429618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.437227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:34:52.442224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.446228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:34:52.738119 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:34:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:04.534252 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:04.536246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:04.539258 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:05.501256 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:05.504253 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:26.568696 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:27.259229 : partner_login Connexion partnair mysy1000formation@gmail.com : OK, Date : 2023-04-05 14:41:26.569740 , _id = 63d168b1da18f633b8053b6a
+INFO:root:2023-04-05 14:41:27.271792 : partner_login Connexion partener_token : OK , _id = 63d169b8a18e0689a1336d32
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:27.490092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:27.494093 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:27.497618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:27.501633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:27.507633 : Connexion du partner recid = a97b61d78f194cd37d3e18ed634c3f623de92d3658f7803691 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:27.533629 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 1789
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:27.836504 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.124423 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.126422 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.128420 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.510227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.512236 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.883634 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.886634 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.891167 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.894162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.899160 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.904164 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.906163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.911161 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.916159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.922168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.925167 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.930169 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.934167 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.939158 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.944159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.949157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.954161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:33.956160 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.962164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:33.968172 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:43.473830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:43.481205 : partner_login Connexion partnair contact@mysy-training.com : OK, Date : 2023-04-05 14:41:43.475067 , _id = 641c21666cad03956ab28252
+INFO:root:2023-04-05 14:41:43.486202 : partner_login Connexion partener_token : OK , _id = 641c23520d5d7f136a823b3c
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:43.616369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:43.620368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:43.623362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:43.627378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:41:43.630369 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:41:43.840177 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:41:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:30.940618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:30.943621 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:30.946617 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:34.050997 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:34.054018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:34.057552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:34.060607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:42:34.067141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:34] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:35.199577 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:35] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:38.469475 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:38] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:50.870687 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:50] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:42:51.399841 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:42:51] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:01.120801 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:01.123800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:01.126329 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:03.334691 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:03.338690 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:03.340696 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:03.346692 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:03.351690 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:03] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:04.591203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:04] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:16.232952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:17.988157 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 14:44:18.020107 : Add_User_To_LMS_Class - Cette formation n'est pas valide/active
+INFO:root:2023-04-05 14:44:18.023113 : UpdateStagiairetoClass WARNING : Impossbile de finaliser l'incription dans le LMS
+INFO:root:2023-04-05 14:44:18.023113 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:18] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:18.426199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:18.771648 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:18.774651 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:44:18.777660 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:18] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:18] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:35.952853 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:35] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:44:40.448339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:44:41] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:54.509318 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:55.385462 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:55.507562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:45:55.511569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:55.516564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:55.948552 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:56.212762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:45:56.215777 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:45:56.221283 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:45:56] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:46:00.541313 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:46:00.545307 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:46:00.548311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:00] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:46:03.712868 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:46:03.716872 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:46:03.721866 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 14:46:03.726112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:46:03.729110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:03] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:46:04.909453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:46:04] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:48:27.315231 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:48:27] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 14:48:27.684221 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 14:48:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\lms_chamilo\\mysy_lms.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2064886167120 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064886167120 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2064886167120 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064886167120 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2064886167248 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064886167248 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 14:50:45.320719 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 14:50:45.320719 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 14:50:45.320719 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 14:50:45.321765 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2064886167248 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064886167248 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2064801093520 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064801093520 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2064801093520 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2064801093520 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2013895499280 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2013895499280 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2013895499280 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2013895499280 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2014231575824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2014231575824 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 15:27:12.921017 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 15:27:12.921017 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 15:27:12.921017 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 15:27:12.921017 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2014231575824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2014231575824 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2014231576208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2014231576208 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2014231576208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2014231576208 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2971724050960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971724050960 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2971724050960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971724050960 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2971724104272 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971724104272 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 15:28:48.774699 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 15:28:48.774699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 15:28:48.774699 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 15:28:48.774699 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2971724104272 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971724104272 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2971619259216 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971619259216 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2971619259216 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2971619259216 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1696126875920 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696126875920 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1696126875920 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696126875920 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1696470038480 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696470038480 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 15:30:04.168063 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 15:30:04.168063 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 15:30:04.168063 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 15:30:04.168063 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1696470038480 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696470038480 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1696470038864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696470038864 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1696470038864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1696470038864 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2240646378128 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646378128 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2240646378128 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646378128 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2240646378960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646378960 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 15:31:25.072973 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 15:31:25.072973 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 15:31:25.072973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 15:31:25.073985 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2240646378960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646378960 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2240646432528 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646432528 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2240646432528 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2240646432528 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 15:32:33.306674 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:33.312666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:33.315670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:32:36.307074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:36.308074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:36.313075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:36.315075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:32:36.321074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:36] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:32:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:40.772510 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:33:40.776514 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:40.787515 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:43.405419 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:33:43.408531 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:43.413128 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:33:43.416120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:43.420123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:54.002931 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:33:55.888004 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 15:33:55.930124 : Add_User_To_LMS_Class - Cette formation n'est pas valide/active
+INFO:root:2023-04-05 15:33:55.933123 : UpdateStagiairetoClass WARNING : Impossbile de finaliser l'incription dans le LMS
+INFO:root:2023-04-05 15:33:55.933123 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:55] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:56.139850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:56.344004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:33:56.347010 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:33:56.351005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:33:56] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:00.179999 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:00] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:16.489938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:16.491942 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:16.492936 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:17.435865 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:17.436874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:17.984505 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:17.987508 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:17.990504 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:17.994505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:17.997505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.004514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.005513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.008523 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.012518 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.018591 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.021589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.026135 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.029313 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.033445 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.038440 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.043440 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.045438 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.049439 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.052434 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.054441 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.667160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.670164 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:18.673174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.678176 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:root:2023-04-05 15:34:18.679178 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:18.927451 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:34:20.232132 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:34:20.236160 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:34:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:07.764997 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:07.769997 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:18.925461 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:18.932738 : update_partner_pwd Le mot de passe du partenaire a bien ete mis à jour dans Mysy =641c21666cad03956ab28252
+INFO:root:2023-04-05 15:39:19.221944 : update_partner_pwd - La mise à jour du mot de passe dans le LMS a été faite également
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:19] "POST /myclass/api/update_partner_pwd/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:57.882778 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:57.884868 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:57.884868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:58] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:58.807601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:58.808599 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:58] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:58.991409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:58.993410 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:58.997410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:58.999406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:39:59.004408 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:39:59.542910 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:39:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:40:41.848563 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:40:41.851560 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:40:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:40:41.854558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:40:41.857562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:40:41.861562 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:40:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:40:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:40:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:40:42.414104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:40:42] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:42:43.453857 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:42:43.456855 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:42:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:42:43.460852 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:42:43.464847 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:42:43.468852 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:42:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:42:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:42:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:42:44.723163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:42:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:47:29.946662 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:47:29.949660 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:47:29.953186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:47:29.956187 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:47:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:47:29.964721 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:47:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:47:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:47:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:47:30.910593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:47:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:06.454495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:06.458500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:06.461493 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:06.466505 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:06.469503 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:07.059678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:11.347205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:11.350202 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:11.352687 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:11] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:13.998650 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:14.000760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:14.005183 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:14.010186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 15:48:14.013183 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:14] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:24.256878 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:24] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 15:48:24.697318 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 15:48:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2298051756624 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051756624 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2298051756624 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051756624 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2298051757648 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051757648 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:01:36.084243 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:01:36.084243 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:01:36.084243 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:01:36.084243 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2298051757648 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051757648 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2298051470544 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051470544 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2298051470544 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2298051470544 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2266762249744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762249744 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2266762249744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762249744 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2266762250704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762250704 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:02:35.360582 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:02:35.360582 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:02:35.360582 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:02:35.360582 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2266762250704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762250704 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2266762250704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762250704 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2266762250704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2266762250704 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2372105340048 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372105340048 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2372105340048 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372105340048 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2372105341072 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372105341072 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:03:02.204192 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:03:02.204192 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:03:02.204192 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:03:02.204192 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2372105341072 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372105341072 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2372108462544 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372108462544 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2372108462544 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2372108462544 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2499126690896 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2499126690896 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2499126690896 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2499126690896 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2499126641424 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2499126641424 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:03:30.745527 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:03:30.745527 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:03:30.745527 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:03:30.745527 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2499126641424 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2499126641424 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2498792445008 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2498792445008 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2498792445008 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2498792445008 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 16:05:11.892952 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:11] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:12.416608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:16.535605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:16.538767 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:16.541604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:20.278594 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:20.282590 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:20.289605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:20.292616 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:20.300123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:20] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:21.532791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:22.083728 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:22] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:39.774606 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:39] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:40.391069 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:44.975774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:44.978781 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:44.982043 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:47.943009 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:47.946901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:47.950923 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:05:47.953915 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:05:47.957928 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:47] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:05:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1847397940624 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397940624 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1847397940624 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397940624 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1847397892496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397892496 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:06:46.471341 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:06:46.471341 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:06:46.471341 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:06:46.471341 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1847397892496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397892496 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1847397638352 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397638352 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1847397638352 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1847397638352 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 16:06:46.653866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:46] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:06:46.935645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:46] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:06:50.015670 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:06:50.017673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:06:50.021671 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:06:53.852975 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:06:53.857168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:06:53.858231 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:06:53.864518 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:06:53.871728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:53] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:06:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:10:35.492394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:10:37.358534 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d442afd087e528609fc0d
+INFO:root:2023-04-05 16:10:37.412091 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 16:10:37.412091 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:37] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:10:37.666561 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:10:37.874565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:10:37.877564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:10:37.880563 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:37] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:10:59.117357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:10:59] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:11:05.238194 : 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\n\t\t
\n\t
\n\t\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t
Formation \n\t\t\t\t
\n\n\n\t\t\t\t
\n\n\t\t\t\t\tInstitut de formation : iexercice \n\t\t\t\t\tFormation : Gestion des Base des Données \n\t\t\t\t\tDate session : 25/05/2023 au 25/05/2023 \n\t\t\t\t\tAdresse : 79 Rue de Sèvres \n\t\t\t\t\tFormateur : EFAI \n\t\t\t\t\tA distance : 0 / En presence : 1 \n\n\t\t\t\t
\n\n\n\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t
Stagiaire \n\t\t\t\t
\n\t\t\t\t
\n\n\t\t\t\t\tNom & Prénom : Sekou \n\t\t\t\t\tTéléphone : 10101 \n\t\t\t\t\tEmail : billardman01@hotmail.com \n\t\t\t\t\tAdresse : 79 Rue de Sèvres, 92100 \n\t\t\t\t\tDate inscription : 05/04/2023 16:10:35 \n\t\t\t\t\tEmployeur : employeur 2 \n\t\t\t\t\tMode de financement : modefinancement \n\n\n\n\t\t\t\t
\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t
Presence \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\tDate \n\t\t\t\t\t\t\tMatin \n\t\t\t\t\t\t\tApres Midi \n\n\t\t\t\t\t\t \n\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t
Evaluation \n\t\t\t\t
\n\t\t\t\t
\n\n\t\t\t\t\tDate évaluation : \n\t\t\t\t\tNote : \n\t\t\t\t\tEvaluation : \n\n\n\n\n\t\t\t\t
\n\t\t\t
\n\n\t\t\t
\n\n\t\t\t\n\n\n\n\t\t
\n\n\t
\n\t \n\t Date impression : 05/04/2023
\n\n\n'
+ dest = <_io.BufferedRandom name='./Emargement/fichier_personnel_1680703865264pdf'>
+ path = None
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
+DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http')
+DEBUG:xhtml2pdf:Parsing img tag, src:
+DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 60.0, 'height': None, 'align': None, 'id': None}
+DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib
+DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
+DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/1000formation/LOGO-FORMATION1000.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='/1000formation/LOGO-FORMATION1000.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/1000formation/LOGO-FORMATION1000.png with httplib
+DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/1000formation/LOGO-FORMATION1000.png
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 41 9
+DEBUG:PIL.PngImagePlugin:STREAM b'iTXt' 62 2585
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 2659 10234
+DEBUG:xhtml2pdf:None
+DEBUG:xhtml2pdf:Col 1 has width 20%
+DEBUG:xhtml2pdf:Col 2 has width 20%
+DEBUG:xhtml2pdf:Col widths: [None, '20%', '20%']
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 41 9
+DEBUG:PIL.PngImagePlugin:STREAM b'iTXt' 62 2585
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 2659 10234
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:11:05] "GET /myclass/api/PrintAttendeeDetail_perSession/2mAi8fOnrT_U7elIX8uGuLpEQep2C7UzrA/session1/billardman01@hotmail.com/gestion-des-base-des-donnees-061 HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:11:11.638126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:11:12] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:12:04.375789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:12:05] "POST /myclass/api/LMS_Credential_Sending_mail/ 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
+DEBUG:filelock:Attempting to acquire lock 2870367418128 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870367418128 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2870367418128 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870367418128 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2870456663568 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870456663568 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 16:19:05.613586 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 16:19:05.613586 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 16:19:05.613586 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 16:19:05.614380 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2870456663568 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870456663568 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2870456663568 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870456663568 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2870456663568 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2870456663568 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 16:19:08.935014 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:19:10.290458 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 16:19:10.343221 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 16:19:10.343221 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:10] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:19:10.537166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:19:10.849043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:19:10.852277 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 16:19:10.855321 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:10] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:19:32.607293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 16:19:37.422396 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 16:19:38] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+DEBUG:filelock:Attempting to acquire lock 1964202965584 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202965584 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1964202965584 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202965584 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1964202966800 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202966800 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 21:53:26.448409 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 21:53:26.449431 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 21:53:26.449431 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 21:53:26.449431 : ++ 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
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1964202966800 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202966800 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1964202966800 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202966800 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1964202966800 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1964202966800 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2263490672912 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2263490672912 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2263490672912 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2263490672912 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2263490673872 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2263490673872 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 21:53:36.973027 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 21:53:36.973027 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 21:53:36.973027 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 21:53:36.973027 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2263490673872 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2263490673872 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2263490674256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:filelock:Lock 2263490674256 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2263490674256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2263490674256 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 21:54:58.122875 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:54:58.125445 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:54:58.127033 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:54:58] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:54:58] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:54:58] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:54:59.051403 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:54:59.055394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:54:59] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.039303 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.042303 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.046313 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.049304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.055305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.059312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.068302 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.071311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.079315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.082307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.088306 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.092301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.098305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.101300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.106317 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.111323 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:00.116320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.120835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.129026 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:00.135024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:07.728825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:08.454993 : partner_login Connexion partnair mysy1000formation@gmail.com : OK, Date : 2023-04-05 21:55:07.728825 , _id = 63d168b1da18f633b8053b6a
+INFO:root:2023-04-05 21:55:08.468996 : partner_login Connexion partener_token : OK , _id = 63d169b8a18e0689a1336d32
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:08] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:08.700732 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:08.703733 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:08.708726 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:08.711729 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:08.715734 : Connexion du partner recid = a97b61d78f194cd37d3e18ed634c3f623de92d3658f7803691 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:08.747311 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 1789
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:09.065102 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:14.691228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:14.694238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:14.695228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:14] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.144949 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.145947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.452065 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.456067 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.458582 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.461599 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.465598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.469602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.473610 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.477608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.482597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.484595 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.489596 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.494601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.497611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.500600 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.503789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.508600 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.511595 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:15.515602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.519598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:15.520593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:41.002975 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:41.007988 : partner_login Connexion partnair mysy1000formation@gmail.com : OK, Date : 2023-04-05 21:55:41.003971 , _id = 63d168b1da18f633b8053b6a
+INFO:root:2023-04-05 21:55:41.012971 : partner_login Connexion partener_token : OK , _id = 63d169b8a18e0689a1336d32
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:41.152221 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:41.156263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:41.160899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:41.165920 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:41.168915 : Connexion du partner recid = a97b61d78f194cd37d3e18ed634c3f623de92d3658f7803691 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:41.177935 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 1789
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:41.473718 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:45.959943 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:45.961938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:45.962937 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:45] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.343403 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.345399 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.638368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.641365 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.644392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.649379 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.652515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.654389 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.661412 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.666082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.672080 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.676386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.679084 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.684081 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.689101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.693108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.696109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.699100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.706637 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.709646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:46.711640 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:46.715636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:56.105173 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:56.111176 : partner_login Connexion partnair contact@mysy-training.com : OK, Date : 2023-04-05 21:55:56.106186 , _id = 641c21666cad03956ab28252
+INFO:root:2023-04-05 21:55:56.116722 : partner_login Connexion partener_token : OK , _id = 641c23520d5d7f136a823b3c
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:56.230946 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:56.233948 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:56.235953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:56.243952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:55:56.245957 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:55:56.537006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:55:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:56:31.864604 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:56:31.868611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:56:31.873615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:56:35.540816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:56:35.545031 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:56:35.549025 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:56:35.554045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:56:35.559048 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:35] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:56:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:36.313246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:57:36.317444 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:57:36.321434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:36.326442 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:36.332435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:36] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:38.571869 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:57:38.575191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:38.580225 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 21:57:38.583217 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 21:57:38.589220 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 21:57:38] "POST /myclass/api/GetListEvaluation_Session/ 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
+DEBUG:filelock:Attempting to acquire lock 2253776892752 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776892752 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2253776892752 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776892752 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2253776895696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776895696 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:05:14.421772 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:05:14.422772 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:05:14.422772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:05:14.422772 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2253776895696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776895696 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2253776895696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776895696 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2253776895696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2253776895696 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 1757960876304 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757960876304 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1757960876304 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757960876304 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1757960879312 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757960879312 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:06:26.267714 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:06:26.268336 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:06:26.268336 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:06:26.268336 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1757960879312 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757960879312 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1757886044048 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757886044048 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1757886044048 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1757886044048 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:08:40.211762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:08:40.221764 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:08:40.225756 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:08:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:08:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:08:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:05.541944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:09:05.547128 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:05.553117 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:05.558122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:09:05.564143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:05] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:15.016557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:09:23.506914 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 22:09:26.148486 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 22:09:26.148486 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:26] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:26.586219 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:26.967689 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:09:26.971230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:09:26.977234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:09:26] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:10:00.763011 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:10:00] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:10:08.133216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:10:10] "POST /myclass/api/LMS_Credential_Sending_mail/ 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
+DEBUG:filelock:Attempting to acquire lock 2183446786576 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446786576 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2183446786576 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446786576 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2183446789840 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446789840 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:12:04.753449 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:12:04.753449 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:12:04.753449 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:12:04.753449 : ++ FLASK PORT 5001 ++
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2183446789840 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446789840 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2183446430864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446430864 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2183446430864 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2183446430864 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:12:06.094827 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:07] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:12:36.162463 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:12:39.620056 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d442afd087e528609fc0d
+INFO:root:2023-04-05 22:12:39.670013 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 22:12:39.670013 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:39] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:12:40.056752 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:12:40.576506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:12:40.580628 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:12:40.582633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:40] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:12:53.448630 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:12:53] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:12:58.645596 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:13:00] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:14:31.958662 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:14:32.858603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:14:32.943601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:14:32.947604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:14:32.953624 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:32] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:34] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:14:34.835314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:14:35.085133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:14:35.087255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:14:35.089335 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:14:35] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:32.770522 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:32.773757 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:32.779798 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:32.785800 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:32] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:32.791353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:35.367633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:35.370930 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:35.373975 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:35.378004 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:35.384014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:35] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:47.602645 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:51.640127 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 22:16:51.977247 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 22:16:51.978257 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:51] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:52.319351 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:52.575617 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:16:52.580742 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:16:52.584779 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:16:52] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:17:13.431438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:17:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:17:18.250301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:17:21] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:18:37.979371 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:18:38.607096 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:18:38.695487 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:18:38.699039 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:18:38.703207 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:38] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:40] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:18:40.790036 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:18:40.960927 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:18:40.964237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:18:40.967266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:18:40] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:41.055048 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:20:41.057046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:41] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:41.061046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:45.441086 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:20:45.444591 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:45.449652 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:45.453166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:20:45.457191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:20:45] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:21:00.595713 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:21:03.282660 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 642d4429fd087e528609fc0c
+INFO:root:2023-04-05 22:21:03.922041 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite
+INFO:root:2023-04-05 22:21:03.922041 : Les données du stagiaire ont été correctement mise à jour
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:03] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:21:04.391697 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:21:04.740035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:21:04.744122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:21:04.746120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:04] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:21:11.683759 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:21:19.593334 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:21:22] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:22:51.574651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:22:53] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:05.484740 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:24:06.235937 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:06.327122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:24:06.331126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:06.337142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:06.719471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:07.028500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:24:07.032750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:24:07.037736 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:24:07] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:28:49.023894 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:28:49.074523 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:28:49] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:29:20.595902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:29:20.608182 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:29:20] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:30:27.834935 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:30:27.845393 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:30:27] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1810020061456 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1810020061456 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1810020061456 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1810020061456 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1810020061840 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1810020061840 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:31:49.045466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:31:49.045466 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:31:49.046268 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:31:49.046268 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1810020061840 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1810020061840 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1809685331664 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1809685331664 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1809685331664 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1809685331664 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:31:49.257457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:31:49.931032 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:31:49] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2195517519696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195517519696 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2195517519696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195517519696 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2195847794960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195847794960 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:32:14.074774 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:32:14.074774 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:32:14.074774 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:32:14.074774 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2195847794960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195847794960 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2195763536656 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195763536656 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2195763536656 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2195763536656 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2474314976016 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474314976016 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2474314976016 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474314976016 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2474315825744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474315825744 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:33:16.055650 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:33:16.055650 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:33:16.055650 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:33:16.055650 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2474315825744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474315825744 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2474326894160 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474326894160 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2474326894160 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2474326894160 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:33:24.863501 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:33:25.659109 : add_class_mass -UTF-16 stream does not start with BOM - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:33:25] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1915112541776 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915112541776 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1915112541776 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915112541776 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1915112542352 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915112542352 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:33:51.318088 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:33:51.319087 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:33:51.319087 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:33:51.319087 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:33:51.526691 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1915112542352 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915112542352 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1915111829200 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915111829200 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1915111829200 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1915111829200 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:33:52.196209 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:33:52] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2493643379856 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493643379856 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2493643379856 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493643379856 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2493643380432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493643380432 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:35:23.380621 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:35:23.380621 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:35:23.381618 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:35:23.381618 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2493643380432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493643380432 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2493566564496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493566564496 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2493566564496 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2493566564496 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 1271619277520 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1271619277520 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1271619277520 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1271619277520 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1271619278608 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1271619278608 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:36:37.349618 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:36:37.349618 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:36:37.349618 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:36:37.349618 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1271619278608 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1271619278608 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1271616271248 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:filelock:Lock 1271616271248 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1271616271248 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1271616271248 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:36:40.546219 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:36:41.156045 : add_class_mass -read_csv() got an unexpected keyword argument 'errors' - ERRORRRR AT Line : 2755
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:36:41] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2218143665488 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218143665488 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2218143665488 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218143665488 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2218143666832 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218143666832 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:37:28.078821 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:37:28.078821 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:37:28.078821 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:37:28.078821 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2218143666832 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218143666832 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2218166072976 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218166072976 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2218166072976 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2218166072976 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2145077827728 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2145077827728 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2145077827728 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2145077827728 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2145077828880 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2145077828880 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2145077828880 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:39:42.787227 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:39:42.787227 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:39:42.787227 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:39:42.788235 : ++ FLASK PORT 5001 ++
+DEBUG:filelock:Lock 2145077828880 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2144780065168 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2144780065168 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2144780065168 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2144780065168 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:39:43.095848 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:39:44.061170 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2758
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:39:44] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2235831044432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235831044432 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2235831044432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235831044432 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2235831047952 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235831047952 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:41:10.526140 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:41:10.526140 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:41:10.526140 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:41:10.526140 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:41:10.781840 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2235831047952 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235831047952 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2235809096208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235809096208 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2235809096208 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2235809096208 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:41:12.014338 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2758
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:41:12] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1576048151696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576048151696 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1576048151696 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576048151696 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1576048152080 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576048152080 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:41:45.900574 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:41:45.901575 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:41:45.901575 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:41:45.901575 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:41:46.279005 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1576048152080 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576048152080 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1576063205968 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576063205968 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1576063205968 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1576063205968 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:41:47.239362 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:41:47] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2532849634960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532849634960 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2532849634960 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532849634960 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2532868309584 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532868309584 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:43:08.054314 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:43:08.054314 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:43:08.054314 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:43:08.054314 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2532868309584 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532868309584 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2532763190480 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532763190480 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2532763190480 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2532763190480 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:43:08.274389 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:43:08.958188 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:43:08] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:43:26.041243 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:43:26.064804 : add_class_mass : entete du fichier csv. 'external_code' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:43:26] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:44:54.497196 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:44:54.513193 : add_class_mass : entete du fichier csv. 'external_code' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:44:54] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2379056042256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2379056042256 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2379056042256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2379056042256 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2379056890256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2379056890256 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:45:22.128596 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:45:22.128596 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:45:22.128596 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:45:22.129602 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:45:22.337375 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2379056890256 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2379056890256 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2378724169552 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2378724169552 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2378724169552 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2378724169552 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:45:23.128846 : add_class_mass : entete du fichier csv. 'external_code' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:45:23] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 1663371464400 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663371464400 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1663371464400 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663371464400 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 1663371758672 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663371758672 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:46:00.289031 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:46:00.289031 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:46:00.289031 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:46:00.289031 : ++ FLASK PORT 5001 ++
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 1663371758672 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663371758672 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 1663372670160 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663372670160 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 1663372670160 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 1663372670160 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2023-04-05 22:46:00.621617 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:46:01.677822 : add_class_mass - Vous avez atteint le nombre maximum de formation autorisé
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:46:01] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:46:23.298974 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:46:23.315662 : add_class_mass -'utf-8' codec can't decode byte 0xe9 in position 289: invalid continuation byte - ERRORRRR AT Line : 2763
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:46:23] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 3024187168656 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024187168656 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 3024187168656 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024187168656 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 3024196420304 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024196420304 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:47:58.727696 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:47:58.727696 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:47:58.727696 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:47:58.727696 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 3024196420304 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024196420304 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 3024186276880 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024186276880 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 3024186276880 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 3024186276880 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:48:08.167083 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:48:08.985849 : add_class_mass -UTF-16 stream does not start with BOM - ERRORRRR AT Line : 2763
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:48:08] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2595613199632 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595613199632 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2595613199632 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595613199632 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2595619291728 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595619291728 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:49:38.257419 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:49:38.257419 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:49:38.257419 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:49:38.257419 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2595619291728 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595619291728 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2595522073744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595522073744 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2595522073744 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2595522073744 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+INFO:root:2023-04-05 22:49:38.471008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:49:39.124992 : add_class_mass : entete du fichier csv. 'distanciel' n'est pas acceptée
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:49:39] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2023-04-05 22:49:59.294785 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2023-04-05 22:49:59.329954 : add_class_mass - Vous avez atteint le nombre maximum de formation autorisé
+INFO:werkzeug:127.0.0.1 - - [05/Apr/2023 22:49:59] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+DEBUG:filelock:Attempting to acquire lock 2391989178704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989178704 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2391989178704 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989178704 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2391989479824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989479824 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:50:32.544699 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:50:32.544699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:50:32.544699 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:50:32.544699 : ++ FLASK PORT 5001 ++
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2391989479824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989479824 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2391989479824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989479824 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2391989479824 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2391989479824 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+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
+DEBUG:filelock:Attempting to acquire lock 2179373069328 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179373069328 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2179373069328 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179373069328 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Starting optional update of built-in blacklist.
+DEBUG:filelock:Attempting to acquire lock 2179370628432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179370628432 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.updater:Checking https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/master/disposable_email_blocklist.conf
+INFO:root:2023-04-05 22:51:44.181892 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2023-04-05 22:51:44.181892 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2023-04-05 22:51:44.181892 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2023-04-05 22:51:44.181892 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+DEBUG:validate_email.updater:Local file is fresh enough (same ETag).
+DEBUG:filelock:Attempting to release lock 2179370628432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179370628432 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Attempting to acquire lock 2179370628432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179370628432 acquired on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:validate_email.domainlist_check:(Re)loading blacklist from C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\validate_email\data\blacklist.txt
+DEBUG:filelock:Attempting to release lock 2179370628432 on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
+DEBUG:filelock:Lock 2179370628432 released on C:\Users\cheri\AppData\Local\Temp\tmp-py3-validate-email-1\blacklistupdater.lock
diff --git a/Session_Formation.py b/Session_Formation.py
index 127f110..14d4f95 100644
--- a/Session_Formation.py
+++ b/Session_Formation.py
@@ -42,6 +42,7 @@ def Add_Update_SessionFormation(diction):
'code_postal', 'ville', 'formateur', 'code_session',
'class_internal_url', 'session_status', 'date_debut_inscription', 'date_fin_inscription',
'attestation_certif', "distantiel", "presentiel", "prix_session", 'contenu_ftion', 'lms_class_code']
+
incom_keys = diction.keys()
for val in incom_keys:
if val not in field_list:
@@ -511,7 +512,7 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
# print(" Lecture du fichier : "+saved_file)
nb_line = 0
- df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';')
+ df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore')
# Dictionnaire des champs utilisables
'''
@@ -519,7 +520,7 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
'''
field_list = ['date_debut', 'date_fin', 'nb_participant', 'adresse', 'code_postal', 'ville',
'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation', 'formateur',
- 'code_session', "distanciel", "presentiel", "prix_session", 'contenu_ftion']
+ 'code_session', "distanciel", "presentiel", "prix_session", 'contenu_ftion', 'lms_class_code']
# Controle du nombre de lignes dans le fichier.
total_rows = len(df)
@@ -556,9 +557,26 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
return False, "la session de formation n'existe pas. Impossible d'importer la liste des participants"
x = range(0, total_rows)
+ ignored_line = ""
+ nb_inserted_line = 0
+
for n in x:
mydata = {}
+ nb_inserted_line = nb_inserted_line + 1
+ # Si une ligne n'a aucune information obligatoire, alors on ignore la ligne
+ if (str(df['code_session'].values[n]) == "nan" or str(df['session_status'].values[n]) == "nan" or
+ str(df['date_debut'].values[n]) == "nan" or str(df['date_fin'].values[n]) == "nan" ):
+ mycommon.myprint(str(
+ inspect.stack()[0][
+ 3]) + " - La ligne " + str(n + 2) + " a été ignorée")
+ ignored_line = str(n + 2) + " , " + str(ignored_line)
+
+ nb_inserted_line = nb_inserted_line - 1
+ continue
+
+
+
mydata['date_debut'] = str(df['date_debut'].values[n]).strip().split(" ")[0]
local_status = mycommon.CheckisDate(mydata['date_debut'])
if(local_status is False ):
@@ -625,12 +643,18 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
local_code_session = str(df['code_session'].values[n]).strip()
mydata['code_session'] = local_code_session
- local_adresse = " "
+ local_adresse = ""
if ("adresse" in df.keys()):
if (str(df['adresse'].values[n])):
local_adresse = str(df['adresse'].values[n]).strip()
mydata['adresse'] = local_adresse
+ lms_class_code = ""
+ if ("lms_class_code" in df.keys()):
+ if (str(df['lms_class_code'].values[n])):
+ lms_class_code = str(df['lms_class_code'].values[n]).strip()
+ mydata['lms_class_code'] = lms_class_code
+
local_code_postal = ""
@@ -753,7 +777,13 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
print(str(total_rows) + " sessions ont été inserées")
- return True, str(total_rows) + " sessions ont été inserées / Mises à jour"
+ message_ignored_line = ""
+ if (ignored_line):
+ message_ignored_line = " ATTENTION - Les lignes [" + str(
+ ignored_line) + "] ont été ignorées. car les toutes informations obligatoires ne sont pas fournies"
+
+ return True, str(nb_inserted_line) + " sessions ont été inserées / Mises à jour. " + str(message_ignored_line)
+
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
diff --git a/class_mgt.py b/class_mgt.py
index 70f23fb..1486800 100644
--- a/class_mgt.py
+++ b/class_mgt.py
@@ -2752,7 +2752,8 @@ def add_class_mass(file=None, Folder=None, diction=None):
#print(" Lecture du fichier : "+saved_file)
nb_line = 0
- df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';')
+
+ df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore')
# Dictionnaire des champs utilisables
'''
diff --git a/data_indexees.csv b/data_indexees.csv
index dbffb56..5cc7b36 100644
--- a/data_indexees.csv
+++ b/data_indexees.csv
@@ -1,2 +1,4 @@
,index,mots,occurence,moyenne,id_formation,source_field
-0,0,qsdqsd,1,1.0,qsdqss,title
+0,0,gestion,1,0.33,MYSY_Demo_001,title
+1,1,donne,1,0.33,MYSY_Demo_001,title
+2,2,base,1,0.33,MYSY_Demo_001,title
diff --git a/ela_output_test_file_pandas_2.txt b/ela_output_test_file_pandas_2.txt
index 6aa36ab..e3a67c5 100644
--- a/ela_output_test_file_pandas_2.txt
+++ b/ela_output_test_file_pandas_2.txt
@@ -1,2 +1,4 @@
- mots occurence moyenne id_formation source_field
-0 qsdqsd 1 1.0 qsdqss title
\ No newline at end of file
+ mots occurence moyenne id_formation source_field
+0 gestion 1 0.33 MYSY_Demo_001 title
+1 donne 1 0.33 MYSY_Demo_001 title
+2 base 1 0.33 MYSY_Demo_001 title
\ No newline at end of file
diff --git a/lms_chamilo/mysy_lms.py b/lms_chamilo/mysy_lms.py
index 94cf2fc..0de5ce0 100644
--- a/lms_chamilo/mysy_lms.py
+++ b/lms_chamilo/mysy_lms.py
@@ -1213,17 +1213,17 @@ def Add_User_To_LMS_Class(diction):
my_token = ""
if ("token" in diction.keys()):
if diction['token']:
- my_token = diction['token']
+ my_token = str(diction['token']).strip()
course_code = ""
if ("course_code" in diction.keys()):
if diction['course_code']:
- course_code = diction['course_code']
+ course_code = str(diction['course_code']).strip()
user_lms_id = ""
if ("user_lms_id" in diction.keys()):
if diction['user_lms_id']:
- user_lms_id = diction['user_lms_id']
+ user_lms_id = str(diction['user_lms_id']).strip()
partner_recid = ""
# Verification de la validité du token/mail dans le cas des user en mode connecté