diff --git a/.idea/workspace.xml b/.idea/workspace.xml index abe2dbf..44862dd 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,13 +1,13 @@ - + + - + - - - + + @@ -435,7 +435,6 @@ - @@ -460,6 +459,7 @@ - \ No newline at end of file diff --git a/E_Sign_Document.py b/E_Sign_Document.py new file mode 100644 index 0000000..0a1e53b --- /dev/null +++ b/E_Sign_Document.py @@ -0,0 +1,450 @@ +""" +Ce document permet de gerer la signature electronique des documents. + +Process (exemple : convention) : +A la creation d'un document, si il est soumis à signature electronique +alors il est stocké dans la collection "e_document_signe" avec les champs : +- related_collection +- related_collection_id +- document_data (le contenu du document) +- statut : + 0 - a signer + 1 - signé + +/!\ IMPORTANT : +- A la creation d'un document, on lui ajoute une cle secrete avec 5 chiffre +- On ajoute une adresse email qui doit signer le mail + +Cette clée est utilisé pour : +1 - Recuperer le document +2 - Signer le document. + +Dans le lien de signature on doit fournir : +- _id du document + +Pour afficher le doc, l'utilisateur doit fournir : +- l'email de la personne +- secret_key : la clé de X caractère + +/!\ : Nous effectuons une signature electronique securisée de niveau 2 : +https://www.francenum.gouv.fr/guides-et-conseils/pilotage-de-lentreprise/dematerialisation-des-documents/la-signature#:~:text=L'objectif%20majeur%20de%20la,rapporter%20la%20preuve%20du%20consentement. +En pratique, comment fonctionne la signature électronique avancée (niveau 2) ? +Pour signer numériquement un contrat de location ou même un achat immobilier et que cela ait une valeur légale, il faut passer par un tiers de confiance. Ces entreprises habilitées à effectuer des opérations de sécurité juridique d'authentification, de transmission et de stockage sont nombreuses. Si elles proposent chacune leur solution, plus ou moins élaborées ou faciles d’utilisation, leur fonctionnement est relativement similaire : la procédure ressemble un peu à un achat en ligne, avec une authentification par code secret via SMS. Le processus est le suivant. + +Vous vous connectez sur le site du tiers de confiance en ligne à l’aide de vos identifiants, voire de votre clef électronique dans le cas d’une authentification qualifiée (niveau 3) +Vous ajoutez les documents (word, PDF, etc…) que vous souhaitez faire signer. +Vous invitez des signataires après avoir renseigné leurs coordonnées (en particulier leur numéro de téléphone portable). +Chaque signataire reçoit par mail une notification pour signer ainsi qu’un code par SMS permettant de sécuriser la signature. + +""" + + + +import base64 + +import bson +import pymongo +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime, time +import prj_common as mycommon +import secrets +import inspect +import sys, os +import csv +import pandas as pd +from pymongo import ReturnDocument +import GlobalVariable as MYSY_GV +from math import isnan +import GlobalVariable as MYSY_GV +import ela_index_bdd_classes as eibdd +import email_mgt as email +import jinja2 +from flask import send_file +from xhtml2pdf import pisa +from email.message import EmailMessage +from email.mime.text import MIMEText +from email import encoders +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +from email.mime.base import MIMEBase +from email import encoders +import hashlib +from Crypto.Cipher import PKCS1_OAEP +from Crypto.PublicKey import RSA + + +class SignedMessage: + message: bytes = None + digitalsignature: bytes = None + + def __init__(self, message: bytes): + self.message = message + + def _hash_message(self): + # Generate the hash of this message + return calculateHash(self.message) + + def encrypt(self, key): + hash = self._hash_message() + # Instantiating PKCS1_OAEP object with the public key for encryption + cipher = PKCS1_OAEP.new(key=key) + # Encrypting the message with the PKCS1_OAEP object + self.digitalsignature = cipher.encrypt(hash) + +""" +Add document du signe +""" +def Create_E_Document(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'file_name', 'related_collection', 'related_collection_id', + 'email_destinataire'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'file_name', 'related_collection', 'related_collection_id', + 'email_destinataire'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + if (mycommon.isEmailValide(str(diction['email_destinataire'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email " + str(diction['email_destinataire']) + " n'est pas valide") + return False, " L'adresse email " + str(diction['email_destinataire']) + " n'est pas valide " + + file_name = diction['file_name'] + + basename = os.path.basename(file_name) + basename2 = basename.split(".") + + if (len(basename2) != 2): + mycommon.myprint(str(inspect.stack()[0][3]) + " - : Le nom du fichier est incorrect") + return False, "Le nom du fichier est incorrect" + + if (str(basename2[1]).lower() not in MYSY_GV.ALLOWED_EXTENSIONS): + mycommon.myprint(str(inspect.stack()[0][3]) + " - : le format de fichier '"+str(basename2[1])+"' n'est pas autorisé. Les extentions autorisées sont : "+str(MYSY_GV.ALLOWED_EXTENSIONS)) + return False, "le format de fichier '"+str(basename2[1])+"' n'est pas autorisé. Les extentions autorisées sont : "+str(MYSY_GV.ALLOWED_EXTENSIONS) + + encoded_pdf_to_string = "" + with open(file_name, "rb") as f: + encoded_pdf_to_string = base64.b64encode(f.read()) + + + secret_key = secrets.token_urlsafe(5) + new_diction = {} + new_diction['document_data'] = encoded_pdf_to_string + new_diction['related_collection'] = "aaaa" + new_diction['related_collection_id'] = 'bbbb' + new_diction['partner_owner_recid'] = my_partner['recid'] + new_diction['statut'] = '0' + new_diction['valide'] = '1' + new_diction['locked'] = "0" + new_diction['secret_key'] = str(secret_key) + new_diction['email_destinataire'] = str(diction['email_destinataire']) + new_diction['date_update'] = str(datetime.now()) + new_diction['update_by'] = str(my_partner['_id']) + + val = MYSY_GV.dbname['e_document_signe'].insert_one(new_diction) + if (val is None): + mycommon.myprint( + " Impossible de créer le E-Document (2) ") + return False, " Impossible de créer le E-Document (2) " + + return True, str(val['id']) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de créer le E-Document " + + + +""" +Recuperation document à signer, sans connexion token +""" +def Get_Given_E_Document_Not_Signed_No_Token(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'e_doc_id', 'secret_key', 'user_email' ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'e_doc_id', 'secret_key', 'user_email' ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + """ + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + """ + + if( mycommon.isEmailValide(str(diction['user_email'])) is False ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + str(diction['user_email']) + "' n'est pas un email valide ") + return False, " Les informations fournies sont incorrectes" + + + RetObject = [] + val_tmp = 0 + + RetObject = [] + val_tmp = 0 + + qry = { 'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key':str(diction['secret_key']), + 'statut':'0'} + + for New_retVal in MYSY_GV.dbname['e_document_signe'].find(qry).sort([("_id", pymongo.DESCENDING), ]): + if( "email_destinataire" in New_retVal.keys() and New_retVal['email_destinataire']): + list_email = str(New_retVal['email_destinataire']).replace(",",";") + tab_list_email = list_email.split(";") + + if( str(diction['user_email']) in tab_list_email ) : + user = New_retVal + user['id'] = str(val_tmp) + if( "signature_digitale" in New_retVal.keys() ): + del New_retVal['signature_digitale'] + + val_tmp = val_tmp + 1 + decode_data = user['document_data'].decode() + user['document_data'] = decode_data + RetObject.append(mycommon.JSONEncoder().encode(user)) + + + if(len(RetObject) <= 0 ): + mycommon.myprint(str( + inspect.stack()[0][3]) + " Aucun E-document trouvé ") + return False, " Aucun E-document trouvé " + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer le document électronique " + + + + +def calculateHash(message): + m = hashlib.sha256() + m.update(message) + return m.digest() + +def checkIntegrity(calculated_hash, decrypted_hash): + if calculated_hash == decrypted_hash: + return True + else: + return False + +""" +Signature du document +""" +def Create_E_Signature_For_E_Document(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'e_doc_id', 'secret_key', 'email_destinataire', 'user_ip' ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'e_doc_id', 'secret_key', 'email_destinataire' ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + """ + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + """ + if (mycommon.isEmailValide(str(diction['email_destinataire'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + str( + diction['user_email']) + "' n'est pas un email valide ") + return False, " Les informations fournies sont incorrectes" + + + RetObject = [] + val_tmp = 0 + + # Verifier la validité du document + qry = { 'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key':str(diction['secret_key']), + } + + + is_valide_e_document = MYSY_GV.dbname['e_document_signe'].count_documents(qry) + if( is_valide_e_document <= 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'idientifiant du E-Document est invalide ") + return False, " L'idientifiant du E-Document est invalide " + + e_document_data = MYSY_GV.dbname['e_document_signe'].find_one(qry) + + if ("email_destinataire" in e_document_data.keys() and e_document_data['email_destinataire']): + list_email = str(e_document_data['email_destinataire']).replace(",", ";") + tab_list_email = list_email.split(";") + + if (str(diction['email_destinataire']) in tab_list_email): + my_str = str(e_document_data['document_data']) + document_data_as_bytes = str.encode(my_str) + print(type(document_data_as_bytes)) # ensure it is byte representation + + message = document_data_as_bytes + msg = SignedMessage(message=message) + + # Generating private key (RsaKey object) of key length of 1024 bits + private_key = RSA.generate(1024) + # Generating the public key (RsaKey object) from the private key + public_key = private_key.publickey() + + # Calculating the digital signature + msg.encrypt(key=public_key) + print(f"Digital Signature: {msg.digitalsignature}") + + # The message is still clear + #print(f"Message: {msg.message}") + + # Instantiating PKCS1_OAEP object with the private key for decryption + decrypt = PKCS1_OAEP.new(key=private_key) + # Decrypting the message with the PKCS1_OAEP object + decrypted_message = decrypt.decrypt(msg.digitalsignature) + print(f"decrypted_message: {decrypted_message}") + + # We recalculate the hash of the message using the same hash function + calcHash = calculateHash(msg.message) + #print(f"decrypted_message: {msg.message}") + + is_signed_valide = checkIntegrity(calcHash, decrypted_message) + if( is_signed_valide is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'intégrité du document signé n'est pas valide ") + return False, " Impossible de signer le document(3) " + + + """ + Apresent que le message est signé, on va mettre à jour le doc + """ + encoded_signed_pdf_to_string = base64.b64encode(decrypted_message) + new_data = {} + new_data['signature_digitale'] = msg.digitalsignature + new_data['signed_date'] = str(datetime.now()) + new_data['signed_email'] = str(diction['email_destinataire']) + new_data['signed_ip_adress'] = str(diction['user_ip']) + new_data['statut'] = "1" + + + qry_key = {'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key': str(diction['secret_key']), + 'email_destinataire': str(diction['email_destinataire'])} + + + result = MYSY_GV.dbname['e_document_signe'].find_one_and_update( + qry_key, + {"$set": new_data}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + if ("_id" not in result.keys()): + mycommon.myprint( + " Impossible de signer le document (2) ") + return False, " Impossible de signer le document (2) " + + else: + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'idientifiant du E-Document est invalide ") + return False, " L'idientifiant du E-Document est invalide " + + return True, " Le document a été correction signé. Vous allez recevoir le document par email" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de signer le document " + diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 6791d66..fef1187 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -41,7 +41,7 @@ from email.message import EmailMessage import attached_file_mgt as attached_file_mgt from zipfile import ZipFile import partner_client as partner_client - +import E_Sign_Document as E_Sign_Document """ Enregistrement d'un stagiaire @@ -9465,6 +9465,22 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat if (local_status is not True): return local_status, my_partner + """ + 20/03/2024 : Creation du E-Document à signer + On verifier si le partenaire dispose de l'option "signature_digital" dans la collection base_partner_setup + """ + is_partner_digital_signature = "" + is_signature_digital_count = MYSY_GV.dbname['base_partner_setup'].count_documents( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'signature_digital', + 'valide': '1', + 'locked': '0', + 'config_value': '1'}) + if (is_signature_digital_count == 1): + is_partner_digital_signature = "1" + + + # Verifier que la session est valide is_session_id_valide = MYSY_GV.dbname['session_formation'].count_documents( {'_id': ObjectId(str(diction['session_id'])), @@ -9742,6 +9758,26 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat # Creation de l'email à enoyer msg = MIMEMultipart("alternative") + """ + 20/03/2024 : la convention pdf a été créée. + Si le partenaire a l'option de signature digitale, alors on créé le e-document + """ + if( is_partner_digital_signature == "1"): + new_e_document_diction = {} + new_e_document_diction['token'] = diction['token'] + new_e_document_diction['file_name'] = outputFilename + toaddrs = ", ".join(tab_emails_destinataire) + new_e_document_diction['email_destinataire'] = str(toaddrs) + #new_e_document_diction['email_destinataire'] = "cbalde@mysy-training.com" + + new_e_document_diction['related_collection'] = "" + new_e_document_diction['related_collection_id'] = "" + local_status_e_doc, local_retval_e_doc = E_Sign_Document.Create_E_Document(new_e_document_diction) + + if(local_status_e_doc is False ): + return local_status_e_doc, local_retval_e_doc + + else: # Il s'agit d'une simple email @@ -9855,6 +9891,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat smtpserver.close() print(" Email envoyé " + str(val)) + """ 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history """ diff --git a/Log/log_file.log b/Log/log_file.log index 7a23321..a78f791 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2153022,3 +2153022,3135 @@ INFO:root:2024-03-19 17:28:17.539635 : ++ FLASK PORT 5001 ++ INFO:root:2024-03-19 17:28:17.539635 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 08:40:29.662810 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 08:40:29.663802 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 08:40:29.664799 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 08:40:29.664799 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 08:40:29.664799 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 08:40:47.077101 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 08:40:47.077101 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 08:40:47.077101 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 08:40:47.077101 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 08:40:47.077101 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 08:41:37.161550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.163550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.164549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.166542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.167548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.170552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:37.540885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.541891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.545905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:37.546916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.200718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.202018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.204469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.209616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.214453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.218705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.529808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.533831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.543130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.544223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.546863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.554869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.853285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.857325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:38.863854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.864890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.868140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:38.873155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.438414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.439412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.440415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.441056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.446379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.451757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.758308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.761321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.763319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.769465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:39.773638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:39.778160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.086123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.088145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.090153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.094157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.095158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.101462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.413957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.414962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.415965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.418974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.422967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.430466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.740624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.742236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.743275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:40.745275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.751847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:40.755706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.064548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:41.066114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.070135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.071648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:41.077072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.082616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.373135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.378153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.385219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:41.389008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:41:41.393910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:41:41.396904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:41:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:31.217140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.218139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.219138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.223047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.226064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:31.230082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:31.520253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:31.535547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.550876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:31.554868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.177510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.182534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.186550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.191761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.197602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.202598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.206590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.209053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.214656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.222888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.226494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.232698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.240759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.244070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.249083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.256209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.265175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.270510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.276658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.282272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.287786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.292523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.302127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.307523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.318093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.320109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.329057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.334078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.342361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.348638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.356529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.365501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.391404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.392422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.395091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.402147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.406791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.417707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.424567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.429925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.433441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.440071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.445018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.457818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.467374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.475762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.483133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.489027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.494207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.498820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.508327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.511473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.518996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.524385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.534645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 08:56:32.539263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.543832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.550827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.555174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 08:56:32.562007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 08:56:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:14:04.978790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:14:04.978790 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:14:04.978790 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:14:04.978790 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:14:04.978790 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\crm_opportunite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:18:20.500433 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:18:20.500433 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:18:20.500433 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:18:20.500433 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:18:20.500433 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:19:54.851511 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:19:54.851511 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:19:54.851511 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:19:54.851511 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:19:54.851511 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:22:31.290646 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:22:31.291653 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:22:31.291653 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:22:31.291653 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:22:31.291653 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:27:13.689042 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:27:13.689042 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:27:13.689042 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:27:13.689042 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:27:13.689042 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:30:56.031756 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:30:56.031756 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:30:56.031756 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:30:56.032745 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:30:56.032745 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:32:13.183385 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:32:13.184389 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:32:13.184389 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:32:13.184389 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:32:13.184389 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:35:13.998899 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:35:13.998899 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:35:13.998899 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:35:13.998899 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:35:13.998899 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:35:48.566168 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:35:48.566168 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:35:48.566168 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:35:48.566168 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:35:48.566168 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:36:12.426037 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:36:12.427043 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:36:12.427043 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:36:12.427043 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:36:12.427043 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:37:44.278641 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:37:44.278641 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:37:44.278641 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:37:44.278641 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:37:44.278641 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:37:59.031881 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:37:59.031881 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:37:59.031881 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:37:59.031881 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:37:59.031881 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:39:10.520604 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:39:10.520604 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:39:10.521601 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:39:10.521601 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:39:10.521601 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:41:02.271736 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:41:02.271736 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:41:02.271736 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:41:02.271736 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:41:02.271736 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:41:27.054084 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:41:27.054084 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:41:27.054084 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:41:27.055614 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:41:27.055614 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:45:08.472055 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:45:08.473055 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:45:08.473055 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:45:08.473055 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:45:08.473055 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:45:22.811678 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:45:22.811678 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:45:22.812674 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:45:22.812674 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:45:22.812674 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 09:47:31.563793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 09:47:31] "POST /myclass/api/Create_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 09:47:31.572829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 09:47:31] "POST /myclass/api/Create_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:48:48.753666 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:48:48.753666 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:48:48.753666 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:48:48.753666 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:48:48.753666 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 09:57:51.559161 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 09:57:51.560163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 09:57:51.560163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 09:57:51.560163 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 09:57:51.560163 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:01:33.108539 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:01:33.109538 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:01:33.109538 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:01:33.109538 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:01:33.109538 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:01:43.003041 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:01:43.003041 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:01:43.003041 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:01:43.003041 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:01:43.004039 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:22:27.580796 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:22:27.580796 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:22:27.580796 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:22:27.581788 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:22:27.581788 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:22:38.520185 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:22:38.521179 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:22:38.521179 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:22:38.521179 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:22:38.521179 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:23:26.163138 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:23:26.163138 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:23:26.163138 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:23:26.163138 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:23:26.163138 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:23:31.959212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:23:31] "POST /myclass/api/Create_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:23:31.966539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:23:32.559752 : Create_E_Document - La valeur 'email_destinataire' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:23:32] "POST /myclass/api/Create_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:23:53.484315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:23:53] "POST /myclass/api/Create_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:23:53.497849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:23:53] "POST /myclass/api/Create_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:25:21.520888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:25:21] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:25:21.527359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:25:21.554061 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:25:21] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:25:57.655665 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:25:57.655665 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:25:57.655665 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:25:57.655665 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:25:57.655665 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:26:11.818404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:26:11] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:26:11.824402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:26:12.316829 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:26:12] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:26:48.492113 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:26:48.493113 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:26:48.493113 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:26:48.493113 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:26:48.493113 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:26:54.430459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:26:54] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:26:54.437018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:26:54.927149 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:26:54] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:29:07.746864 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:29:07.746864 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:29:07.746864 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:29:07.746864 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:29:07.746864 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:29:23.783598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:29:23] "POST /myclass/api/Create_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:29:23.789590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:29:23] "POST /myclass/api/Create_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:29:49.167006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:29:49] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:29:49.173468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:29:49.676774 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 239 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:29:49] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:30:53.784114 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:30:53.784114 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:30:53.785108 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:30:53.785108 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:30:53.785108 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:30:56.504089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:30:56] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:30:56.510357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:30:56] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:32:51.399908 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:32:51.399908 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:32:51.399908 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:32:51.399908 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:32:51.399908 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:33:01.398114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:33:01] "POST /myclass/api/Get_Given_E_Document_No_Token HTTP/1.1" 308 - +INFO:root:2024-03-20 10:33:01.404398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:33:01] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:34:21.160597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:34:21] "POST /myclass/api/Create_E_Signature_For_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:34:21.167607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:34:21] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:42:11.692999 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:42:11.692999 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:42:11.692999 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:42:11.692999 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:42:11.692999 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:42:19.257126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:42:19] "POST /myclass/api/Create_E_Signature_For_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:42:19.262645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:42:19] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:44:51.613231 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:44:51.613231 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:44:51.613231 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:44:51.613231 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:44:51.613231 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:44:55.034275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:44:55] "POST /myclass/api/Create_E_Signature_For_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:44:55.040144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:44:55] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:45:28.042524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:45:28.042524 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:45:28.042524 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:45:28.042524 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:45:28.042524 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 10:45:39.608398 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 10:45:39.608398 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 10:45:39.608398 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 10:45:39.608398 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 10:45:39.608398 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 10:45:49.900151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:45:49] "POST /myclass/api/Create_E_Signature_For_E_Document HTTP/1.1" 308 - +INFO:root:2024-03-20 10:45:49.907247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:45:50] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:56:41.481086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:56:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:56:41.533281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:56:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:56:51.723766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:56:51.736256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:56:51] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:56:51] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:57:01.174493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:57:01.186741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:57:01] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:57:01] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:58:09.608302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:58:09] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:58:17.406056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:58:17.413064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:58:17] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:58:17] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:59:06.334997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:59:06] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:59:46.703936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:59:46] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 10:59:55.609783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 10:59:55.615730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:59:55] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 10:59:55] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 11:00:23.590134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 11:00:23] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 11:02:31.827263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 11:02:31] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 11:04:33.652259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 11:04:33] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 11:16:11.322051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 11:16:11] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:53:41.417911 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 12:53:41.418905 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 12:53:41.418905 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 12:53:41.418905 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 12:53:41.418905 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 12:53:53.406572 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 12:53:53.407571 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 12:53:53.407571 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 12:53:53.407571 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 12:53:53.407571 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 12:54:38.127573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.128575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.131021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.132031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.133368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.137128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:38.456332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.458354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.459368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:38.468975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.094518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.095519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.099497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.104006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.110190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.113323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.404958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.415464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.416696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.417726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.434481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.447947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.717821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.748118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.750340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.756453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:39.768107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:39.770350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.028245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.074995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.077354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.083132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.094018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.100781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.351486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.397340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.402740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.415694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.417723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.428199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.676049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.721397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.725899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.742303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.744708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:40.749044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:40.987425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.049909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:41.051986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.060938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.066174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:41.069644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.297018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.374213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:41.378333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.384791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:41.389575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.396385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.608128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.701513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:41.707010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.710025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.717528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.722824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:41.921114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:42.031649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:42.033706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:54:42.035765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:42.044942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:54:42.049690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:54:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:17.868841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:17.871182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:17.876296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:17.881528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:17.884532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:17.889534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.226242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.229243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.315017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.319019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.805578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.810157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.817840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.823275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.828951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.833474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.840494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.846342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.854512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.858128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.864497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.870457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.879408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.886716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.891583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.897411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.908299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.916803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.921242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.930378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.939378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.947200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.953664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.979148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:18.986505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:18.995528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.001924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.011302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.018305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.028762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.043770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.051758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.057764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.066210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.074306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.084458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.091999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.102018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.108019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.117023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.128504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.133904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.139716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.148462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.159468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.165401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.172816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.191255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.193797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.208793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.213245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.220328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.229514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.240518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.250531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.253523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.264014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 12:56:19.269166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.276122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 12:56:19.287471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 12:56:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:27.680785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:27.837087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:27.842458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:27.847710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:27.857091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:27.862590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:27.868776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:27.875207 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-03-20 13:09:27.876207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:27.892619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:27.910510 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:09:28.083491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:28.087217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:28.099208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:09:28.105517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:09:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:10:27.184186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:10:27.189198 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:10:27] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:10:27.198191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:10:27.201195 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:10:27] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:11:23.997472 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:11:23.997472 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:11:23.997472 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:11:23.997472 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:11:23.997472 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 13:11:57.458633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:11:57.469164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:11:58.963302 : Get_Given_E_Document_No_Token -name 'my_partner' is not defined - Line : 229 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:11:58] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:11:58.966188 : Get_Given_E_Document_No_Token -name 'my_partner' is not defined - Line : 229 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:11:58] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:12:39.953639 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:12:39.953639 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:12:39.954641 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:12:39.954641 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:12:39.954641 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 13:12:49.525218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:12:49.531746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:12:49] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:12:49] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:17:34.891871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:17:34.900678 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:17:34] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:19:01.431028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:19:01] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:19:01.471026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:19:01] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:19:10.955390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:19:10] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:19:10.983100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:19:11] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:19:14.880930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:19:15] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:22:26.639066 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:22:26.639066 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:22:26.639066 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:22:26.639066 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:22:26.640072 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:26:57.359344 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:26:57.359344 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:26:57.360416 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:26:57.363070 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:26:57.363070 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:30:59.415720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:30:59.415720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:30:59.416724 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:30:59.416724 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:30:59.416724 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:33:51.500651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:33:51.501651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:33:51.501651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:33:51.501651 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:33:51.501651 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 13:33:51.596217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:33:53.090115 : Create_E_Signature_For_E_Document -name 'mydata' is not defined - Line : 388 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:33:53] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 13:34:53.322481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:34:53] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:36:46.439168 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:36:46.439168 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:36:46.439168 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:36:46.440168 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:36:46.440168 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 13:37:07.359886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 13:37:09.093481 : Create_E_Signature_For_E_Document -name 'mydata' is not defined - Line : 388 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 13:37:09] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 13:37:58.407999 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 13:37:58.407999 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 13:37:58.407999 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 13:37:58.407999 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 13:37:58.407999 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:11:59.169591 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:11:59.170588 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:11:59.170588 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:11:59.170588 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:11:59.170588 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:12:13.637010 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:12:13.638010 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:12:13.638010 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:12:13.638010 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:12:13.638010 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:12:13.722962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 14:12:14.743294 : Create_E_Signature_For_E_Document -name 'mydata' is not defined - Line : 388 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:12:14] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:15:19.646768 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:15:19.646768 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:15:19.646768 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:15:19.647771 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:15:19.647771 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:15:37.048634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 14:15:38.138118 : Create_E_Signature_For_E_Document -'NoneType' object has no attribute 'keys' - Line : 394 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:15:38] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:16:15.562446 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:16:15.562446 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:16:15.562446 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:16:15.562446 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:16:15.562446 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:16:15.609956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:16:15] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:16:58.548284 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:16:58.548803 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:16:58.548803 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:16:58.548803 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:16:58.548803 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:19:04.225306 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:19:04.226742 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:19:04.226742 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:19:04.226742 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:19:04.226742 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:19:04.268857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:19:04] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:21:50.622286 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:21:50.622286 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:21:50.622286 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:21:50.622286 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:21:50.622286 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:21:55.409861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:21:55] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:28:48.687305 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:28:48.688101 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:28:48.688101 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:28:48.688101 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:28:48.688101 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:29:49.339321 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:29:49.340320 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:29:49.340320 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:29:49.340320 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:29:49.340320 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:30:17.708556 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:30:17.708556 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:30:17.708556 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:30:17.708556 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:30:17.708556 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:30:17.754084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:30:17] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 14:32:15.234815 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 14:32:15.234815 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 14:32:15.234815 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 14:32:15.234815 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 14:32:15.234815 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 14:33:19.974665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 14:33:20] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:24:51.760804 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:24:51.760804 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:24:51.761944 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:24:51.761944 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:24:51.761944 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:25:00.748597 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:25:00.748597 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:25:00.748597 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:25:00.748597 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:25:00.748597 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 16:25:16.395013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 16:25:16.860824 : Create_E_Signature_For_E_Document -[Errno 2] No such file or directory: '/DSCPFX.pfx' - Line : 417 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 16:25:16] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:25:56.039538 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:25:56.039538 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:25:56.039538 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:25:56.039538 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:25:56.039538 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:28:01.064505 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:28:01.064505 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:28:01.064505 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:28:01.064505 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:28:01.064505 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 16:28:02.680491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 16:28:03.222748 : Create_E_Signature_For_E_Document -'RsaKey' object has no attribute '_x509' - Line : 426 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 16:28:03] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:28:24.823668 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:28:24.823668 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:28:24.823668 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:28:24.823668 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:28:24.823668 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:36:06.865393 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:36:06.865393 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:36:06.865393 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:36:06.866858 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:36:06.866858 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:36:44.569167 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:36:44.570167 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:36:44.570167 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:36:44.570167 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:36:44.570167 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:38:42.202774 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:38:42.203777 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:38:42.203777 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:38:42.203777 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:38:42.203777 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 16:40:02.032125 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 16:40:02.032125 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 16:40:02.032125 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 16:40:02.032125 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 16:40:02.032125 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 16:40:02.073617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 16:40:02] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:20:39.960692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:20:39.966951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:20:41.209543 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 258 +INFO:root:2024-03-20 18:20:41.209543 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 258 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:20:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:20:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:21:45.856480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:21:45.888531 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 258 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:21:45] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:22:30.472306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:22:30.476307 : Get_Given_E_Document_No_Token -'eeee' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 247 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:22:30] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:29:20.223509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:29:20.248996 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 258 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:29:20] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 18:30:28.142288 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 18:30:28.142288 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 18:30:28.142288 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 18:30:28.142288 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 18:30:28.142288 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 18:30:40.086713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 18:30:40.952001 : Get_Given_E_Document_No_Token -Object of type bytes is not JSON serializable - Line : 261 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:30:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 18:31:07.462240 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 18:31:07.462240 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 18:31:07.462240 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 18:31:07.462240 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 18:31:07.462240 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 18:31:08.785191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:31:08] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:47:52.301087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:47:52] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:49:08.216736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:49:08] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 18:50:31.236376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 18:50:31] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:08.309604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:08] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.061552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.075569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.081970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.092690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.094475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.097811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.198099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.203097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.216096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.308500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.742149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.750506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.762933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.768326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.775760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.780776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.787782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.793236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.798247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.818900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.822981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.829487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.835124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.839175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.847361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.858589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.863651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.873405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.877157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.886348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.896800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.903011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.919501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.922113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:35.926316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.936392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.940933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.949700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.953352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.960785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.967144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.975227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.984531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:35.993388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.000971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.009675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.013687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.020079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.026145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.032146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.038152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.045677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.049676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.055618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.057616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.064624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.072112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.075397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.080841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.089387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.092377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.101421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.104421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.113416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.116419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.122422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.125660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.130126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 19:49:36.132663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:49:36.143941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:49:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:50:14.132158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:50:14] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 19:50:29.331476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 19:50:29] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:00:06.172812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:00:06] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:01:16.088916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:01:16] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:01:45.041789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:01:45] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:03:54.545895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:03:54] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:06:52.958599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:06:52] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:11:39.192876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:39.206693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:39.329290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:39.337354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:39.765712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:39.791145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:11:40.428544 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:root:2024-03-20 20:11:40.429563 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:11:40.431802 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:root:2024-03-20 20:11:40.431802 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:root:2024-03-20 20:11:40.431802 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:root:2024-03-20 20:11:40.431802 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:11:40] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:12:09.776131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:12:09.784611 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:12:09] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:12:10.067135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:12:10.074148 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:12:10] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:16:25.750146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:16:25.756782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:16:25.764860 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:16:25] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:16:25.766990 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:16:25] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:17:33.116159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:17:33] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:17:33.202404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:17:33] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:17:33.243896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:17:33] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:17:51.337631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:17:51.346084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:17:51] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:17:51] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:18:06.391522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:18:06.399078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:18:06] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:18:06] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:19:22.703126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:19:22] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:19:23.208802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:19:23] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:19:23.251065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:19:23] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:19:30.144526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:19:30.153530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:19:30] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:19:30] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:20:03.172951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:20:03] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:20:03.431770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:20:03] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:20:03.646802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:20:03] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:21:39.214339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:21:39.224985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:39] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:39] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:21:45.837451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:21:45.845875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:45] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:45] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:21:53.709021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:53] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:21:54.033067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:21:54] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:25.068699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:25] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:25.888077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:25] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:26.192043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:26] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:46.984401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:47] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:47.308487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:47] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:53.139394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:53] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:22:53.191208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:22:53] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:27:11.862143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:27:11.868430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:27:11] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:27:11] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:28:17.396145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:28:17.402148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:17] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:17] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:28:52.240838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:52] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:28:52.781782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:52] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:28:59.046730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:59] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:28:59.359136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:28:59] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:12.089161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:12] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:12.208796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:12] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:12.860556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:12] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:19.773694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:19] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:20.090536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:20] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:41.179845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:41.496234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:41] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:32:44.655333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:32:44.665176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:44] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:32:44] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:33:52.298876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:33:52] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:33:58.620361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:33:58] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:33:58.650233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:33:58] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:34:56.038178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:34:56] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:34:56.278481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:34:56] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 20:36:42.256359 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 20:36:42.256359 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 20:36:42.256359 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 20:36:42.256359 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 20:36:42.256359 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 20:36:54.079178 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 20:36:54.079178 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 20:36:54.079178 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 20:36:54.079178 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 20:36:54.079178 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 20:39:23.416817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:39:24.303948 : Get_Given_E_Document_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:39:24] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:46:24.188730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:46:24] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:47:36.479537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:47:36.520174 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:47:36] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:55:17.538429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:55:17] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:55:22.619562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 20:55:22.631701 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:55:22] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 20:56:34.826622 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 20:56:34.826622 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 20:56:34.826622 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 20:56:34.826622 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 20:56:34.826622 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 20:57:22.545291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:57:22] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:57:27.932121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:57:28] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:58:30.230285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:58:30] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 20:59:33.784409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 20:59:33] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:06:03.542278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:06:03] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:06:09.094723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:06:09] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:06:42.052021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:06:42] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:07:15.875003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:07:15] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:07:24.181138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:07:24] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:08:55.413838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:08:55] "POST /myclass/api/Get_Given_E_Document_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:08:59.669664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:08:59] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:01.990130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:02.006288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:02.019806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:02.022821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:02.043560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:02.051817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.096734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.105258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.105258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.107278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.530699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.536704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.546731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.551784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.558745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.564419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.565410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.575421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.593950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.599464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.601872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.610879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.617352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.621359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.626406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.632401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.637876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.643193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.647101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.656492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.662512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.663505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.670681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.678266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.681404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.688420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.696464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.699955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.704202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.709775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.717250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.722900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.727565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.734300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.736535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.745252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.748253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.758719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.763719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.770262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.777693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.782933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.788513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.797910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.800911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.810306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.816134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.822564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.830945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.837596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.842085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.847092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.852652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.857141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.864262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.869190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:09:03.872271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.877105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.882848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:09:03.888286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:09:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:15:09.593460 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:15:09.593460 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:15:09.593460 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:15:09.593460 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:15:09.594462 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:15:34.440457 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:15:34.440457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:15:34.440457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:15:34.440457 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:15:34.440457 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:17:18.691097 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:17:18.691097 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:17:18.691097 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:17:18.691097 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:17:18.691097 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 21:17:41.032218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:17:42.097258 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:17:42] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:19:38.890808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:19:38.897344 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:19:38] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:03.852683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:03.860707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:03.864148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:03.866681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:03.868191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:03.870371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:04.760180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:04.764181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.079811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.084806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.089381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.094395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.099405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.104420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.108688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.113961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.118964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.128694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.132695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.138699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.144660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.150886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.155880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.160453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.167210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.173933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.179427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.185726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.190238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.193453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.204888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.206361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.213758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.225754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.230248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.238736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.246346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.253352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.258369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.264842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.272763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.274765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.284812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.289636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.295654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.297655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.301913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.308228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.315809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.320225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.325063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.332345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.337425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.342974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.347988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.354105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.361123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.364116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.369374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.374063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.378772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.385774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.392461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.400086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.407847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.410088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.420041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.422035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.427042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.429040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.750122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.755023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.760749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.764164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.771140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.777535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.781532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.786631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.791520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.797730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.802206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.808515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.813726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.819956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.827701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.833257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.836689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.844922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.850201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.856846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.859413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.864347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.870478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.880261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.883942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.891969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.902755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.912168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.916743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.922577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.929221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.932622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.938656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.942678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.946679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.951675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.958179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.959260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.967298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.971197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.978850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.987850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:05.990083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:05.996723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.002811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.007838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.014711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.019903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.025570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.033142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.037143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.042497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.050014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.056493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.061488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.065082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.072238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.077623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 21:22:06.084626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 21:22:06.085629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 21:22:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:36:17.183181 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:36:17.184177 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:36:17.184177 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:36:17.184177 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:36:17.184177 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:38:40.789202 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:38:40.789202 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:38:40.789202 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:38:40.789202 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:38:40.790208 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:38:55.206022 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:38:55.206022 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:38:55.206022 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:38:55.206022 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:38:55.206022 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:39:22.153229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:39:22.154229 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:39:22.154229 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:39:22.154229 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:39:22.154229 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:40:12.238468 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:40:12.238468 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:40:12.238468 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:40:12.238468 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:40:12.238468 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:40:42.346907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:40:42.346907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:40:42.346907 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:40:42.346907 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:40:42.346907 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:41:11.179258 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:41:11.179258 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:41:11.179258 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:41:11.179258 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:41:11.179258 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:44:55.252660 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:44:55.252660 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:44:55.252660 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:44:55.252660 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:44:55.252660 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:45:33.382005 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:45:33.383008 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:45:33.383008 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:45:33.383008 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:45:33.383008 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:47:49.023136 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:47:49.023136 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:47:49.023136 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:47:49.024153 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:47:49.024153 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 21:50:40.080051 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 21:50:40.081050 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 21:50:40.081050 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 21:50:40.081050 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 21:50:40.081050 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:04:43.826296 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:04:43.826296 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:04:43.826296 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:04:43.826296 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:04:43.826296 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:04:52.686562 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:04:52.686562 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:04:52.686562 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:04:52.686562 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:04:52.686562 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 22:05:14.015227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.196105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.200105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.203388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.207165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.209612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.217745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.230819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.230819 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-03-20 22:05:14.235630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.254026 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.460676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.463729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:14.478936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:14.482951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.451874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.453887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.457889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.460890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.465893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.472048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.481119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.488297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.497616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.500380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.508675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.516233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.523812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.526251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.533603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.540062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.545089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.561250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.574015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:18.579977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.588472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:18.596802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:24.103861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:24.112124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:24.116470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:24.121949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:24.125962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:24.132181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:27.044481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:05:28.071063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:28.075066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:28.079590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:05:28.087601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:05:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:01.850151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:01] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:02.156616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:06:02.158829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:07.094141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:06:07.097138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:06:07.100366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:06:07.105401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:12.562570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:15.492240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:15] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:19.798153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:06:20.377240 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:06:20.381769 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : ssss@deee.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_16045.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2024-03-20 22:06:20.517196 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-20 22:06:20.517196 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-20 22:06:20.566012 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:06:20.568012 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : qdqsqd@qds.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysylaplumedepierrot+01@gmail.com
part nom6_client   part 6   mysylaplumedepierrot+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_94508.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2024-03-20 22:06:20.683680 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-20 22:06:20.683680 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:20] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:06:20.702598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:06:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:07:46.616347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:07:46] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:01.313484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:01] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.358792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.360793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.363019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.367003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.369201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.372195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.473886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.478232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.479248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.579044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.784295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.787430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.791580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.797213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.801216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.809213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.815133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.821005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.831542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.840244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.848122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.855237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.861525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.868766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.878800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.888809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.891809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.897807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.904719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.911722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.916723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.921723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.925724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.932719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.937735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.942737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.947736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.969835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.974084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:03.977381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.984873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:03.994191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.000183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.004184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.011392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.017488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.027068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.036935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.039087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.042277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.048383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.052375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.057321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.064452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.073680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.079737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.088696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.091700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.096895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.102221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.108288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.115283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.121287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.129479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.135709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.138167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.145631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.152126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:04.154857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:04.160872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:08:59.221607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:08:59.227770 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:08:59] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:00.844427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:00.848296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:00.851521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:00.853533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:00.855532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:00.860125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.249660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.252422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.254430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.256429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.443736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.447845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.452029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.456224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.459408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.468592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.475104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.481310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.498618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.504704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.510172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.516169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.525991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.535935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.543088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.554540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.563328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.577577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.585908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.589247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.599928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.607636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.616972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.622522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.638890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.649089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.655674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.665565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.678068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.687770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.698760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.718927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.737579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.743304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.751786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.758783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.767447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.773906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.780916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.787945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.793000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.798564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.803942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.813247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.818080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.824258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.830992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.835088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.842460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.849117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.856014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.861797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.867924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.871097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.875270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.879427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.884921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.889375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:09:01.898407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:09:01.901316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:10:38.468672 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:10:38.468672 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:10:38.468672 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:10:38.468672 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:10:38.468672 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:11:56.275697 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:11:56.275697 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:11:56.275697 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:11:56.275697 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:11:56.275697 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:18:59.332864 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:18:59.332864 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:18:59.333864 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:18:59.333864 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:18:59.333864 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:27:50.522275 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:27:50.522275 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:27:50.522275 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:27:50.522275 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:27:50.522275 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:28:00.584589 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:28:00.584589 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:28:00.584589 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:28:00.584589 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:28:00.584589 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 22:28:00.630012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:00.632041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:00.635042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:00.638042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:00.639042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:00.642441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:09.154157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:10.581148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:10.585162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:10.589571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:10.594755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:12.114373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:15.170851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:15] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:19.569195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:20.112540 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:28:20.115538 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : ssss@deee.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_48462.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2024-03-20 22:28:20.245671 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-20 22:28:20.245671 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-20 22:28:20.294415 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:28:20.296422 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : qdqsqd@qds.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysylaplumedepierrot+01@gmail.com
part nom6_client   part 6   mysylaplumedepierrot+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_23427.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2024-03-20 22:28:20.420533 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-20 22:28:20.420533 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:20] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:20.438618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:26.945092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:26] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:29.587214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:29] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:32.605841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:28:32.657697 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:28:32.659698 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : ssss@deee.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_88493.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2024-03-20 22:28:32.796784 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-20 22:28:32.798792 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : qdqsqd@qds.fr 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Dev MySy Training 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 24/03/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysylaplumedepierrot+01@gmail.com
part nom6_client   part 6   mysylaplumedepierrot+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 20/03/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_23258.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:33] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/dfxLNaO2xEkF-P6MaiFU01kmyob6QogrLQ/65f04a3f549224c14c3f6072/65f05a36c544f77525a3062e HTTP/1.1" 200 - +INFO:root:2024-03-20 22:28:33.027331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:28:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:29:27.430865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:29:27] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:29:32.127250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:29:32.132268 : Create_E_Signature_For_E_Document -'user_email' - Line : 344 +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:29:32] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-20 22:30:10.276720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-20 22:30:10.276720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-20 22:30:10.276720 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-20 22:30:10.276720 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-20 22:30:10.276720 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-20 22:30:23.859004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:24] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:25.732704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.734853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.736864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.739334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.741333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.744335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:25.862751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.864934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:25.935624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:25.935624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.166470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.170512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.175316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.180316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.186834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.191835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.197838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.201838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.210222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.215217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.225808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.231314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.239213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.251348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.252343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.259747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.264000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.270502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.278804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.302791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.303941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.306420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.310989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.317990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.330879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.333985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.341003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.346475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.349489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.359825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.362832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.367829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.374840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.383085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.386144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.392411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.401316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.407770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.418622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.430552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.434644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.442384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.446456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.450452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.456232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.461309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.467968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.471884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.484441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.489198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.493195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.500252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.504871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.511022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.516097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.522936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.525435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.531448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:26.535809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:26.541811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:30:57.871415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:30:58.321841 : Get_Given_E_Document_Not_Signed_No_Token - La valeur 'qsdsq' n'est pas un email valide +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:30:58] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:20.540100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:20] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:40.410212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:40] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.037698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.039821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.043201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.049198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.051206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.052207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.208017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.240802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.242088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.246642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.539171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.543173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.549524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.554820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.558900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.566349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.573618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.582142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.586163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.596033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.601505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.608687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.614579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.619184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.626751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.635757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.647311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.655550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.663199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.667637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.671637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.677644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.687270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.692792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.697431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.701455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.716274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.720721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.727356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.731791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.739611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.743980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.748707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.753914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.760922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.772221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.780065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.787701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.792704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.798633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.802878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.806955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.813390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.824077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.832475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.836412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.841882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.847159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.850838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.855295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.864469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.868640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.874130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.882824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.888832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.894646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.899290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.907876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:31:43.912090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-20 22:31:43.918700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - diff --git a/crm_opportunite.py b/crm_opportunite.py index e10846d..dac5bdd 100644 --- a/crm_opportunite.py +++ b/crm_opportunite.py @@ -710,6 +710,7 @@ def Get_List_CRM_Opportunite_no_filter(diction): """ Recuperer données d'une opportunité données """ + def Get_Given_CRM_Opportunite(diction): try: diction = mycommon.strip_dictionary(diction) diff --git a/main.py b/main.py index 4b50a25..9f9e5c8 100644 --- a/main.py +++ b/main.py @@ -77,6 +77,7 @@ import attestation_formation as attestation_formation import crm_opportunite as crm_opportunite import site_formation as site_formation import paiement_condition as paiement_condition +import E_Sign_Document as E_Sign_Document @@ -7971,6 +7972,59 @@ def Configure_Partner_Init_Setup_No_Token(): +""" +API pour ajouter un document electronique à signer +""" +@app.route('/myclass/api/Create_E_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Create_E_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Create_E_Document payload = ",payload) + status, retval = E_Sign_Document.Create_E_Document(payload) + return jsonify(status=status, message=retval) + + +""" +API Pour recuperer un documen électronique +""" +""" +API pour ajouter un document electronique à signer +""" +@app.route('/myclass/api/Get_Given_E_Document_Not_Signed_No_Token/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_E_Document_Not_Signed_No_Token(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_E_Document_Not_Signed_No_Token payload = ",payload) + status, retval = E_Sign_Document.Get_Given_E_Document_Not_Signed_No_Token(payload) + return jsonify(status=status, message=retval) + + + +""" +API pour signer electroniquement un document +""" +@app.route('/myclass/api/Create_E_Signature_For_E_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Create_E_Signature_For_E_Document(): + # On recupere le corps (payload) de la requete + + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Create_E_Signature_For_E_Document payload = ",payload) + + user_ip = "" + headers_list = request.headers.getlist("X-Forwarded-For") + user_ip = headers_list[0] if headers_list else request.remote_addr + + payload['user_ip'] = user_ip + + status, retval = E_Sign_Document.Create_E_Signature_For_E_Document(payload) + return jsonify(status=status, message=retval) + + + + if __name__ == '__main__': print(" debut api") context = SSL.Context(SSL.SSLv23_METHOD)