diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 44862dd..c76c98c 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,11 @@ - - + + - @@ -435,7 +434,6 @@ - @@ -460,6 +458,7 @@ - \ No newline at end of file diff --git a/E_Sign_Document.py b/E_Sign_Document.py index 0a1e53b..a51559b 100644 --- a/E_Sign_Document.py +++ b/E_Sign_Document.py @@ -75,7 +75,7 @@ from email import encoders import hashlib from Crypto.Cipher import PKCS1_OAEP from Crypto.PublicKey import RSA - +import segno class SignedMessage: message: bytes = None @@ -106,7 +106,7 @@ def Create_E_Document(diction): Verification des input acceptés """ field_list = ['token', 'file_name', 'related_collection', 'related_collection_id', - 'email_destinataire'] + 'email_destinataire', 'source_document'] incom_keys = diction.keys() for val in incom_keys: @@ -119,7 +119,7 @@ def Create_E_Document(diction): Verification des champs obligatoires """ field_list_obligatoire = ['token', 'file_name', 'related_collection', 'related_collection_id', - 'email_destinataire'] + 'email_destinataire', 'source_document'] for val in field_list_obligatoire: if val not in diction: @@ -172,18 +172,21 @@ def Create_E_Document(diction): new_diction['statut'] = '0' new_diction['valide'] = '1' new_diction['locked'] = "0" - new_diction['secret_key'] = str(secret_key) + new_diction['secret_key_open'] = str(secret_key) new_diction['email_destinataire'] = str(diction['email_destinataire']) + new_diction['source_document'] = str(diction['source_document']) 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']) + return True, str(val.inserted_id) except Exception as e: @@ -203,7 +206,7 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): """ Verification des input acceptés """ - field_list = ['token', 'e_doc_id', 'secret_key', 'user_email' ] + field_list = ['token', 'e_doc_id', 'secret_key_open', 'user_email' ] incom_keys = diction.keys() for val in incom_keys: @@ -215,7 +218,7 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): """ Verification des champs obligatoires """ - field_list_obligatoire = ['token', 'e_doc_id', 'secret_key', 'user_email' ] + field_list_obligatoire = ['token', 'e_doc_id', 'secret_key_open', 'user_email' ] for val in field_list_obligatoire: if val not in diction: @@ -246,12 +249,12 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): RetObject = [] val_tmp = 0 - RetObject = [] - val_tmp = 0 + local_partner_owner_recid = "" + qry = { 'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), - 'secret_key':str(diction['secret_key']), + 'secret_key_open':str(diction['secret_key_open']), 'statut':'0'} for New_retVal in MYSY_GV.dbname['e_document_signe'].find(qry).sort([("_id", pymongo.DESCENDING), ]): @@ -270,12 +273,159 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): user['document_data'] = decode_data RetObject.append(mycommon.JSONEncoder().encode(user)) + local_partner_owner_recid = str(user['partner_owner_recid']) + if(len(RetObject) <= 0 ): mycommon.myprint(str( inspect.stack()[0][3]) + " Aucun E-document trouvé ") return False, " Aucun E-document trouvé " + """ + Un document a été trouvé, a présent il faut + 1 - Créer la clé de signature + 2 - Envoyer par email la clé de signature + + """ + + secret_key_for_sign = secrets.token_urlsafe(5) + + + update_data = {} + update_data['secret_key_signature'] = secret_key_for_sign + update_data['date_update'] = str(datetime.now()) + update_data['update_by'] = str(diction['user_email']) + + ret_val2 = MYSY_GV.dbname['e_document_signe'].find_one_and_update(qry, + {"$set": update_data}, + return_document=ReturnDocument.AFTER + ) + + if (ret_val2 is None or "_id" not in ret_val2.keys()): + mycommon.myprint(str( + inspect.stack()[0][3]) + " Impossible d'initialiser le processus de signature ") + return False, " Impossible d'initialiser le processus de signature " + + """ + On envoie la clé de validation de la signature par email + """ + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + html = """\ + + +
+
+ +
+
+ +
+
+
+ +
+ Bonjour + +
+
+ Vous venez de lancer une procedure de signature digitale. Voici le code de validation :
+ + """ + secret_key_for_sign + """
+ +

+ Cordialement. +
+ + + """ + + # contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + # sourceHtml = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(html, 'html') + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Signature electronique : Clé de signature" + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(diction['user_email']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Signature electronique : Clé de signature" + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(diction['user_email']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) + + val = smtpserver.send_message(msg) + smtpserver.close() + print(" Email envoyé " + str(val)) + + return True, RetObject except Exception as e: @@ -307,7 +457,7 @@ def Create_E_Signature_For_E_Document(diction): """ Verification des input acceptés """ - field_list = ['token', 'e_doc_id', 'secret_key', 'email_destinataire', 'user_ip' ] + field_list = ['token', 'e_doc_id', 'secret_key_signature', 'email_destinataire', 'user_ip' ] incom_keys = diction.keys() for val in incom_keys: @@ -319,7 +469,7 @@ def Create_E_Signature_For_E_Document(diction): """ Verification des champs obligatoires """ - field_list_obligatoire = ['token', 'e_doc_id', 'secret_key', 'email_destinataire' ] + field_list_obligatoire = ['token', 'e_doc_id', 'secret_key_signature', 'email_destinataire' ] for val in field_list_obligatoire: if val not in diction: @@ -354,7 +504,7 @@ def Create_E_Signature_For_E_Document(diction): # Verifier la validité du document qry = { 'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), - 'secret_key':str(diction['secret_key']), + 'secret_key_signature':str(diction['secret_key_signature']), } @@ -365,7 +515,7 @@ def Create_E_Signature_For_E_Document(diction): return False, " L'idientifiant du E-Document est invalide " e_document_data = MYSY_GV.dbname['e_document_signe'].find_one(qry) - + local_signature_digitale = "" 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(";") @@ -406,7 +556,7 @@ def Create_E_Signature_For_E_Document(diction): str(inspect.stack()[0][3]) + " L'intégrité du document signé n'est pas valide ") return False, " Impossible de signer le document(3) " - + local_signature_digitale = msg.digitalsignature """ Apresent que le message est signé, on va mettre à jour le doc """ @@ -421,7 +571,7 @@ def Create_E_Signature_For_E_Document(diction): qry_key = {'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), - 'secret_key': str(diction['secret_key']), + 'secret_key_signature': str(diction['secret_key_signature']), 'email_destinataire': str(diction['email_destinataire'])} @@ -441,6 +591,231 @@ def Create_E_Signature_For_E_Document(diction): str(inspect.stack()[0][3]) + " L'idientifiant du E-Document est invalide ") return False, " L'idientifiant du E-Document est invalide " + + + + """ + Vu que tout est ok, on va créer le fichier pdf definif. + on va utiliser le contenu du champ "source_document" au quel on a ajouté un tag de la signature + """ + + qry_key = {'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key_signature': str(diction['secret_key_signature']), + 'email_destinataire': str(diction['email_destinataire'])} + + e_document_date_2 = MYSY_GV.dbname['e_document_signe'].find_one(qry_key) + + local_partner_owner_recid = e_document_date_2['partner_owner_recid'] + + local_signature_digitale = decrypt.decrypt(e_document_date_2['signature_digitale']) + + local_url_securite = MYSY_GV.CLIENT_URL_BASE+"E_Document/"+str(e_document_date_2['_id'])+"/"+str(e_document_date_2['partner_owner_recid'])+"/"+str(e_document_date_2['secret_key_signature']) + + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-3:] + qr_code_img_file = str(MYSY_GV.TEMPORARY_DIRECTORY_V2) + "qr_code_" + str(ts) + ".png" + + qrcode = segno.make_qr(str(local_url_securite)) + qrcode.save( + qr_code_img_file, + scale=5, + border=10, + ) + + qr_code_converted_string = "" + with open(qr_code_img_file, "rb") as image2string: + qr_code_converted_string = base64.b64encode(image2string.read()) + + print(" ### qr_code_converted_string = ", qr_code_converted_string) + img_qr_code = "data:image/png;base64," + str(qr_code_converted_string) + + print(" ### img_qr_code = ", img_qr_code) + + body = { + "params": {"mysy_signature_digitale":str(local_signature_digitale), + 'mysy_url_securite':local_url_securite, + 'mysy_qrcode_securite':img_qr_code}, + } + contenu_doc_Template = jinja2.Template(str(e_document_data['source_document'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-5:] + + orig_file_name = "Convention_Signe_" + str(ts) + ".pdf" + outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) + + # open output file for writing (truncated binary) + resultFile = open(outputFilename, "w+b") + + # convert HTML to PDF + pisaStatus = pisa.CreatePDF( + src=sourceHtml, # the HTML to convert + dest=resultFile) # file handle to receive result + + # close output file + resultFile.close() + + final_encoded_pdf_to_string = "" + with open(outputFilename, "rb") as f: + final_encoded_pdf_to_string = base64.b64encode(f.read()) + + qry_key = {'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key_signature': str(diction['secret_key_signature']), + 'email_destinataire': str(diction['email_destinataire'])} + + new_data = {} + new_data['document_data_signed'] = final_encoded_pdf_to_string + 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) " + + + """ + On envoie le mail avec le document signé + """ + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + # Attachement du fichier joint + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(outputFilename, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(outputFilename))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + html = """\ + + +
+
+ +
+
+ +
+
+
+ +
+ Bonjour + +
+
+ Merci de trouver en pièce jointe le document signé electroniquement + +
+ +

+ Cordialement. +
+ + + """ + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': local_partner_owner_recid, + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + html_mime = MIMEText(html, 'html') + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Votre Document Signé " + # msg['to'] = "billardman01@hotmail.com" + msg['to'] = str(diction['email_destinataire']) + + # Attacher l'eventuelle pièces jointes + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Votre Document Signé " + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = msg['to'] = str(diction['email_destinataire']) + + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) + + val = smtpserver.send_message(msg) + smtpserver.close() + print(" Email envoyé " + str(val)) + return True, " Le document a été correction signé. Vous allez recevoir le document par email" except Exception as e: @@ -448,3 +823,310 @@ def Create_E_Signature_For_E_Document(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de signer le document " + + +""" +Cette fonction fait une demande de signature d'un document +""" +def Sent_E_Document_Signature_Request(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'e_doc_id', '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', '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 + + qry = { 'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'statut':'0'} + + is_e_document_valide = "0" + e_document_open_code = "" + e_document_data = {} + + 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( diction['user_email'] in tab_list_email ): + is_e_document_valide = "1" + e_document_data = New_retVal + e_document_open_code = New_retVal['secret_key_open'] + + if( is_e_document_valide == "0" ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email du destinataire n'est pas autorisée ") + return False, " L'adresse email du destinataire n'est pas autorisée " + + + """ + Si le document est valide, alors on envoie la demande de signture + """ + url_signature = MYSY_GV.CLIENT_URL_BASE+"E_Signature/"+str(e_document_data['_id']) + + + + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(e_document_data['partner_owner_recid']), + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + html = """\ + + +
+
+ +
+
+ +
+
+
+ +
+ Bonjour + +
+
+ Cliquez sur le lien ci-dessous pour signer electroniquement le document :
+ + """ + url_signature + """
+ +

+ +

+ Le code d'ouverture du document est : """+ str(e_document_open_code) +""" +

+ Cordialement. +
+ + + """ + + + + #contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + #sourceHtml = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(html, 'html') + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Signature electronique document" + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(diction['user_email']) + + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = " Signature electronique document" + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(diction['user_email']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) + + val = smtpserver.send_message(msg) + smtpserver.close() + print(" Email envoyé " + str(val)) + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer le document électronique " + + + +""" +Cette fonction permet d'afficher une document pdf signé et validé +ex : quand on scan le qr code sur le document pdf +""" +""" +Recuperation document à signer, sans connexion token +""" + + +def Get_Given_E_Document_Signed_No_Token(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'e_doc_id', 'secret_key_signature', 'partner_owner_recid'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'e_doc_id', 'secret_key_signature', 'partner_owner_recid'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + 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 + """ + + + RetObject = [] + val_tmp = 0 + + local_partner_owner_recid = "" + + qry = {'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key_signature': str(diction['secret_key_signature']), + 'statut': '1', + 'partner_owner_recid':str(diction['partner_owner_recid']),} + + for New_retVal in MYSY_GV.dbname['e_document_signe'].find(qry, {'_id':1, 'document_data_signed':1}).sort([("_id", pymongo.DESCENDING), ]): + user = New_retVal + user['id'] = str(val_tmp) + if ("signature_digitale" in New_retVal.keys()): + del New_retVal['signature_digitale'] + + if ("signature_digitale" in New_retVal.keys()): + del New_retVal['signature_digitale'] + + val_tmp = val_tmp + 1 + decode_data = user['document_data_signed'].decode() + user['document_data_signed'] = 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 " diff --git a/Inscription_mgt.py b/Inscription_mgt.py index fef1187..c9082d7 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -9714,10 +9714,17 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat """ 1 - Creation du PDF """ + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) sourceHtml = contenu_doc_Template.render(params=body["params"]) + new_model_courrier_with_code_tag = str(sourceHtml) + "
Code Sécurité = {{ params.mysy_signature_digitale }}
\ +
url Sécurité = {{ params.mysy_url_securite }}
" \ + "
qr code :

QR_CODE
yyyyy

" + + + todays_date = str(date.today().strftime("%d/%m/%Y")) ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] @@ -9768,7 +9775,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat 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['source_document'] = new_model_courrier_with_code_tag new_e_document_diction['related_collection'] = "" new_e_document_diction['related_collection_id'] = "" @@ -9777,6 +9784,23 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat if(local_status_e_doc is False ): return local_status_e_doc, local_retval_e_doc + """ + Apres la creation du document electronique, on envoie la demande de validation + /!\ on envoie le mail à chaque destinataire + """ + + for email in tab_emails_destinataire : + print(" ### traitement du mail : ", email) + new_send_e_document_diction = {} + new_send_e_document_diction['token'] = diction['token'] + new_send_e_document_diction['e_doc_id'] = str(local_retval_e_doc) + new_send_e_document_diction['user_email'] = str(email) + + + local_status_send_e_doc, local_send_retval_e_doc = E_Sign_Document.Sent_E_Document_Signature_Request(new_send_e_document_diction) + if( local_status_send_e_doc is False ): + return local_status_send_e_doc, local_send_retval_e_doc + else: # Il s'agit d'une simple email diff --git a/Log/log_file.log b/Log/log_file.log index a78f791..ba6412a 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2156154,3 +2156154,4339 @@ INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:31:43] "POST /myclass/api/GetActiveS 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 - +INFO:root:2024-03-20 22:32:38.270513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-20 22:32:38.274515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:32:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Mar/2024 22:32:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:05:49.965143 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 13:05:49.965814 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 13:05:49.965814 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 13:05:49.965814 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 13:05:49.965814 : ++ 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-21 13:05:59.075499 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 13:05:59.075499 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 13:05:59.075499 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 13:05:59.075499 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 13:05:59.075499 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 13:09:48.250768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.251767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.253767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.255185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.256201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.257591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:48.622307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.623310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.625314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:48.627284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.311722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.312240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.314345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.317383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.322356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.325402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.639436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.641864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.656718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.656718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.657751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.666742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.954205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.957209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:49.985734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.986733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.987734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:49.993736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.269732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.270249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.316442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.319494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.323992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.326263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.579592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.583772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.644410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.645447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.650445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.656318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.892022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.894198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.970608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.971138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:50.975171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:50.980749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.203571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.206589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.299143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.299676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.301710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.305679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.517035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.520057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.626104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.628008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.632044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.638474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.827472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.830474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.952439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.953444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:51.954451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:51.963472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:52.140457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:52.145494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:52.280588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:52.283575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 13:09:52.288591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 13:09:52.289587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 13:09:52] "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-21 13:14:21.984613 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 13:14:21.984613 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 13:14:21.985618 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 13:14:21.985618 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 13:14:21.985618 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:26:29.602691 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:26:29.602691 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:26:29.604186 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:26:29.604186 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:26:29.604186 : ++ 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-21 15:26:43.010229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:26:43.010229 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:26:43.010229 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:26:43.010229 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:26:43.010229 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:26:44.179752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.180926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.184253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.186274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.190479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.192419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:44.684972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.689384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.791739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:44.793883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.081097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.085095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.089092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.094653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.102265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.105270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.111816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.117812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.122812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.132578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.144593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.147719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.156421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.167948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.174054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.181880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.185555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.192342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.196510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.201225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.208383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.212811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.221018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.227599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.232549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.243484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.248846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.254053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.260958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.264993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.272996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.277993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.281992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.289770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.292771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.297784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.305154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.310906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.319681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.328560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.334081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.343346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.346434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.353007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.363564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.368581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.376576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.382570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.384568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.393573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.398090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.406536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:45.407559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.413828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.420956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.429568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.435594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.440473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.445914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:45.449419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:52.821543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:52] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.053111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.058459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.065605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.079120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.082719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.094736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.102750 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.108748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.120722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.148284 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:53.293558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.298070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.306439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:53.311721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.664325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.672039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.681528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.692534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.696578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.712481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.730650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.747757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.754639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.765399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.775919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.779117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.794647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.803993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.812058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.828849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.845206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.858782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.869436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:26:57.872256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.885503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:26:57.895380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:26:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:00.923118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:00.927574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:00.932853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:00.940683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:00.947834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:00.960257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:03.702890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:03.708276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:03.713877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:03.717920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:07.891471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:07] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:10.456318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:10] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:17.808007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:17] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:19.453568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:19] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:23.308228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:27:24.543271 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:27:24.547272 : 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 , 21/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_05983.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-21 15:27:24.773075 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-21 15:27:24.773075 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 15:27:24.861841 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:27:24.865837 : 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 , 21/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_91525.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-21 15:27:25.071589 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 186 +INFO:root:2024-03-21 15:27:25.071589 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:25] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:27:25.100951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:27:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 15:28:40.262469 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:28:40.262469 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:28:40.263468 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:28:40.263468 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:28:40.263468 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:28:53.108443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:28:53] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:28:55.352501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:28:55] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:29:04.910668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:29:06.035087 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:29:06.038641 : 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 , 21/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_90319.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-21 15:29:06.279124 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 188 +INFO:root:2024-03-21 15:29:06.279124 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 15:29:06.373033 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:29:06.376094 : 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 , 21/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_28378.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-21 15:29:06.593204 : Create_E_Document -'InsertOneResult' object is not subscriptable - Line : 188 +INFO:root:2024-03-21 15:29:06.593204 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:29:06] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:29:06.621390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:29:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 15:29:39.801399 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:29:39.801399 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:29:39.801399 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:29:39.801399 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:29:39.801399 : ++ 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-21 15:30:10.293414 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:30:10.293414 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:30:10.293414 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:30:10.293414 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:30:10.293414 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:30:12.094920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:30:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:30:13.980714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:30:14] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:30:18.258466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:30:19.298686 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:30:19.302985 : 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 , 21/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_53756.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-21 15:30:19.529348 : Sent_E_Document_Signature_Request Le champ 'file_name' n'est pas autorisé +INFO:root:2024-03-21 15:30:19.529348 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 15:30:19.616375 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:30:19.620705 : 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 , 21/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_66159.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-21 15:30:19.836388 : Sent_E_Document_Signature_Request Le champ 'file_name' n'est pas autorisé +INFO:root:2024-03-21 15:30:19.837410 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:30:19] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:30:19.866778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:30:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 15:31:18.865169 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:31:18.866163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:31:18.866163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:31:18.866163 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:31:18.866163 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:31:19.318478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:31:19] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:31:21.371017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:31:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:31:26.600706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:31:27.347610 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:31:27.349604 : 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 , 21/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_86617.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-21 15:31:27.512104 : Sent_E_Document_Signature_Request -'secret_key' - Line : 513 +INFO:root:2024-03-21 15:31:27.513102 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 15:31:27.578151 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:31:27.581802 : 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 , 21/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_16602.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-21 15:31:27.744680 : Sent_E_Document_Signature_Request -'secret_key' - Line : 513 +INFO:root:2024-03-21 15:31:27.744680 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:31:27] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:31:27.766224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:31:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 15:33:02.895372 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:33:02.895372 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:33:02.895372 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:33:02.895372 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:33:02.895372 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:33:02.944141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:33:02.947781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:33:02.951933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:33:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:33:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:33:03.672179 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:33:03.674178 : 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 , 21/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_24647.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-21 15:33:03.862681 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 15:33:03.862681 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 15:33:03.932976 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:33:03.935987 : 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 , 21/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_74155.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-21 15:33:04.093497 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 15:33:04.093497 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:33:04] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:33:04.108581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:33:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 15:35:44.835342 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 15:35:44.835342 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 15:35:44.835342 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 15:35:44.835342 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 15:35:44.835342 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 15:37:02.564608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:04.319328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:04] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:08.235887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:08.917298 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:37:08.919293 : 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 , 21/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_56248.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-21 15:37:12.608445 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:37:12.612444 : 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 , 21/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_46924.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 - - [21/Mar/2024 15:37:15] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:15.649777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:42.601542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.059811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.060813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.063163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.069169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.071187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.075199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.663053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.665065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.668442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.670768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.891355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.895911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.900334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.905452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.913211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.920189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.928666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.934488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.946346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.954784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.961803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:51.968802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.983269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.991646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:51.999210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.005763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.014342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.031092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.036896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.052357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.059824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.065296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.071516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.078519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.087936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.101560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.102363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.112888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.124533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.131991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.137906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.152211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.162372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.173124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.181568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.189439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.201654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.211753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.220117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.227254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.239634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.246684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.255252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.263882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.268313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.273338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.280058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.290040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.296189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.304986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.311997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.316987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.329666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.337031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.344422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.349316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.359022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.363000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.373185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.381413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.963316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.967178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.973858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:52.981819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.988272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:52.996204 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:53.001425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:53.004591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:53.013037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:53.028169 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:53.112164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:53.116069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:53.122947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:37:53.129549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:59.188236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:37:59.208129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:37:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:38:04.910049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:38:04.916574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:38:04.922680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:38:04.934706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:38:04.946974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:04] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:38:04.969157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:38:04.972589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:04] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:38:04.987218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:05] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:05] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:38:21.933805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:21] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:38:21.971594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:38:21] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:39:25.585314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:25] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:39:25.620655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:25] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:39:31.533119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:39:31.538142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:39:31.544236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:39:31.550573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:31] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:31] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:39:36.934938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:36] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:39:36.963733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:39:36] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:40:14.990994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:40:15] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:40:15.025111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:40:15] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:48:54.082718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:48:54.088581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:48:54.095780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:48:54.103350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:48:56.018271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:48:58.039925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:48:58] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:49:00.913148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:49:01.020641 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:49:01.027807 : 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 : cbalde@mysy-training.com 

\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 , 21/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_72641.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-21 15:49:02.278071 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 15:49:02.283072 : 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 : billardman01@hotmail.com 

\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 , 21/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_33064.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 - - [21/Mar/2024 15:49:03] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:49:03.395829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:49:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:05.355192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:05] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:18.095035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:18] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:20.244897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:20.245923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:20.246449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:20.253823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:20.255862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:20.259900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:20.871632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:20.873660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.510733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:21.512765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:21.515778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:21.520276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.524582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.533723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:21.536740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.832147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.840302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.850125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:21.854439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.862025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:21.961207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.151238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.155773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.176336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.177819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.180619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.274238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.477273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.481272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.510160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.516186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.522457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.588144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.804939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.806947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.835947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:22.837948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.844947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:22.899570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.121520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.126523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.152902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.161427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.166431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.214891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.436827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.438026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.465465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.482052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.483052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.529052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.750325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.757325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.780960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.795960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:23.799960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:23.842715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.076293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.079266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.090768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.122496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.126060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.152814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.401905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.403510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.407602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.447864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.451433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.462312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.727127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.730603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.734620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.773439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:24.775993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:24.785570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.053073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.057024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.062394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.099321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.102891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.113844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.381621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.383199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.383199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.414659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.419352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.428832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.708285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.710316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.717368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.733350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:25.736327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:25.748265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.036294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.038481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.047187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.054884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.060904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.069127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.367420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.371431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.382414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.384409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.394400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.403386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.689133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.694059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.704702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.714731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:26.720253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:26.725624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.016573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.018146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.025326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.034875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.043321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.045801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.340947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.344919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.355772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.357798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.368066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.370263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.670337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.673345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.684028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.690038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 15:54:27.693050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.707184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 15:54:27.983829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 15:54:27] "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-21 19:31:19.485836 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:31:19.485836 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:31:19.485836 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:31:19.485836 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:31:19.485836 : ++ 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-21 19:37:38.317436 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:37:38.317436 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:37:38.317436 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:37:38.317436 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:37:38.317436 : ++ 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-21 19:38:12.944006 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:38:12.944006 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:38:12.945007 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:38:12.945007 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:38:12.945007 : ++ 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-21 19:39:38.002585 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:39:38.002585 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:39:38.002585 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:39:38.002585 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:39:38.002585 : ++ 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-21 19:53:17.883420 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:53:17.883420 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:53:17.883420 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:53:17.884417 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:53:17.884417 : ++ 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-21 19:53:26.646687 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 19:53:26.646687 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 19:53:26.646687 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 19:53:26.646687 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 19:53:26.647703 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 19:53:32.292030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 19:53:32] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 19:53:34.269592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 19:53:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 19:53:38.456105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 19:53:39.219502 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 19:53:39.222229 : 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 : cbalde@mysy-training.com 

\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 , 21/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_56557.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-21 19:53:41.189741 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 19:53:41.191786 : 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 : billardman01@hotmail.com 

\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 , 21/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_30015.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 - - [21/Mar/2024 19:53:42] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 19:53:42.161660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 19:53:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 19:56:01.829717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 19:56:04] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:03:42.721691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:03:43] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:04:13.470277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:04:13.488316 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:04:13] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:05:38.417854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:05:38.425164 : Create_E_Signature_For_E_Document Le champ 'secret_key_open' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:05:38] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:06:00.593396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:06:01] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:06:20.756957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:06:20.762941 : Create_E_Signature_For_E_Document Le champ 'secret_key_open' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:06:20] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:08:47.831688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:08:49] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:04.520168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.535285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.545740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.547877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.555574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.568554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:04.732031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:04.780109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:04.801686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:04.848508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.114668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.120658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.127904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.132143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.142142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.147566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.154402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.160313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.167401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.174398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.180120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.192000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.198111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.202489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.215793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.218792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.224593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.246755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.253252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.257057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.262057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.266560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.275217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.281876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.290369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.299607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.303274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.310749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.317127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.322681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.330913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.337907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.358164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.364483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.369387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.379726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.385671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.391318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.403844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.409552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.419038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.422039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.431957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.436323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.444529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.453788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.467558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.473839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.478842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.483062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.493069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.498282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.508293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.523976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.527146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.535072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.543536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.550246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:09:05.559069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:09:05.563317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:09:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:11:42.667085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:11:43] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:12:08.989818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:12:09.238039 : Create_E_Signature_For_E_Document -'secret_key_open' - Line : 573 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:12: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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-21 20:13:08.392341 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:13:08.392341 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:13:08.392341 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:13:08.393394 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:13:08.393394 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:14:41.773293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:42] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:55.002773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:55] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.170320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.172325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.174327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.176316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.180316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.182315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.376542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.382340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.382340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.385863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.629807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.635126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.638131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.641586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.648239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.656818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.662446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.669819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.675055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.681276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.690246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.697024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.707105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.716233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.720856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.725547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.736168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.757990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.761238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.762445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.763283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.765804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.772924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.789127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.796626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.808626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.814627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.818624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.822623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.826622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.833162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.840247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.852455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.857847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.863624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.871943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.883935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.888716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.890941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.900362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.906572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.911036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.917569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.926340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.936674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.944849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.949187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.959327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.967782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.975286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.980061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:57.984553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:57.994398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:58.001070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:58.007123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:58.013326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:58.024155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:14:58.026425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:58.033682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:14:58.040358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:14:58] "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-21 20:24:22.014923 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:24:22.014923 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:24:22.014923 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:24:22.014923 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:24:22.014923 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:24:32.313452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:24:32] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:24:34.276650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:24:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:24:37.753838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:24:38.293584 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:24:38.295585 : 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 : cbalde@mysy-training.com 

\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 , 21/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

 


code cherif =
' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_58348.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-21 20:24:43.176570 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:24:43.178558 : 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 : billardman01@hotmail.com 

\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 , 21/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

 


code cherif =
' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_17136.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 - - [21/Mar/2024 20:24:45] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:24:45.191518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:24:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:25:30.685360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:25:30.695229 : Get_Given_E_Document_Not_Signed_No_Token -'65fc8976cd3075e88a6ca818.' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 255 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:25:30] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:26:21.358916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:26:21] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-21 20:27:57.034029 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:27:57.034029 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:27:57.034029 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:27:57.034029 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:27:57.035017 : ++ 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-21 20:31:23.334373 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:31:23.335373 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:31:23.335373 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:31:23.335373 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:31:23.335373 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:31:38.036300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:31:38] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:31:40.271904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:31:40] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:31:44.477040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:31:44.989813 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:31:44.994144 : 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 : cbalde@mysy-training.com 

\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 , 21/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_36904.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-21 20:31:45.140592 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:31:45.140592 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 20:31:45.202540 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:31:45.204540 : 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 : billardman01@hotmail.com 

\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 , 21/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_41484.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-21 20:31:45.334254 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:31:45.334254 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:31:45] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:31:45.351992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:31:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 20:32:43.303395 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:32:43.303395 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:32:43.303395 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:32:43.303395 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:32:43.303395 : ++ 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-21 20:34:56.640481 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:34:56.641481 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:34:56.641481 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:34:56.641481 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:34:56.641481 : ++ 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-21 20:35:51.536907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:35:51.536907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:35:51.536907 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:35:51.536907 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:35:51.536907 : ++ 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-21 20:37:28.439203 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:37:28.440232 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:37:28.440232 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:37:28.440232 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:37:28.440232 : ++ 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-21 20:39:30.713508 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:39:30.713508 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:39:30.713508 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:39:30.713508 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:39:30.713508 : ++ 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-21 20:42:36.247950 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:42:36.247950 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:42:36.247950 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:42:36.247950 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:42:36.247950 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:42:47.866885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:42:47] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:42:49.367279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:42:49] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:42:53.241063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:42:53.777156 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:42:53.779150 : 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 : cbalde@mysy-training.com 

\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 , 21/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_08191.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-21 20:42:53.914126 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:42:53.915169 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 20:42:53.973259 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:42:53.974822 : 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 : billardman01@hotmail.com 

\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 , 21/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_04672.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-21 20:42:54.094706 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:42:54.094706 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:42:54] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:42:54.111377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:42:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 20:43:38.252324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:43:38.253317 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:43:38.253317 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:43:38.253317 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:43:38.253317 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:44:22.642494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:44:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:44:24.264388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:44:24] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:44:27.509420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:44:28.074315 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:44:28.075880 : 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 : cbalde@mysy-training.com 

\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 , 21/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_13148.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-21 20:44:28.220311 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:44:28.220311 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-21 20:44:28.311414 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:44:28.313414 : 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 : billardman01@hotmail.com 

\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 , 21/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_45863.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-21 20:44:28.438989 : Sent_E_Document_Signature_Request L'adresse email du destinataire n'est pas autorisée +INFO:root:2024-03-21 20:44:28.438989 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:44:28] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:44:28.453883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:44:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 20:46:27.211275 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:46:27.211275 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:46:27.211275 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:46:27.211275 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:46:27.211275 : ++ 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-21 20:50:09.820616 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 20:50:09.820616 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 20:50:09.820616 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 20:50:09.820616 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 20:50:09.820616 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 20:50:20.680842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:50:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:50:22.420956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:50:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:50:26.519600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:50:27.014611 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:50:27.016646 : 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 : cbalde@mysy-training.com 

\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 , 21/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_45483.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-21 20:50:29.253783 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 20:50:29.255782 : 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 : billardman01@hotmail.com 

\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 , 21/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_29002.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 - - [21/Mar/2024 20:50:31] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:50:31.125084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:50:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:04.321728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:04] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:28.424108 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'\\xb1\\x86D\\xe4\\xe2\\xbd\\x9c\\xfa=w)\\x88\\xbd%8\\x19tF\\xc3%\\xc6\\x84Cr,7\\xd0\\xc9\\xa7B|6\\x0b"V\\xe0\\xdc\\xa47X\\x96\\x13\\\\I\\x14\\x96\\xea`\\xe0\\xd9]\\xe4\\x06+|6\\xed\\xc7"\\xdc{@\\x1d\\xf9\\xc2\\xea\\x8e\\xf0\\xb9#Tc\\x1e\\xcaM\\\\+\\xabf\\xf3\\x9d\\x9a6t9\\x8eC&\\xf3M\\xa8ax\\x13\\x10?\\x7f\\xd7<\\x06\\x92\\xe7\\xd2\\xec\\xe5\\x7f\\x8d-\\x87>E\\xbc\\xa0J\\x91K\\xd5\\xdf\\x97SD\\x05c_\\xc1\\x00\\x1d\\xfe\'
' + dest = <_io.BufferedRandom name='./temp_direct/final_tmp_doc_89044.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 - - [21/Mar/2024 20:51:28] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.112664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.114661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.118998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.121010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.123539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.126045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.314429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.316337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.321265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.322595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.550362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.553747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.558471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.561715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.567838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.574109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.580123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.585939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.595081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.601256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.604825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.618315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.622365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.630758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.638288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.645320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.652881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.658649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.664182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.674875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.682871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.691333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.697309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.704726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.708852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.713493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.723054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.725461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.731729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.744092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.753094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.760101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.769191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.774236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.783058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.786548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.791726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.799605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.805337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.811931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.820914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.829041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.833772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.839784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.845794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.851883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.862622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.868366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.872659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.877122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.886467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 20:51:30.891285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.895286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.900284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.909560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.914172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.921141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.924405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.931612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 20:51:30.937529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 20:51:30] "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-21 21:10:32.444670 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:10:32.444670 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:10:32.444670 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:10:32.444670 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:10:32.445662 : ++ 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-21 21:11:37.920352 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:11:37.921441 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:11:37.921441 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:11:37.921441 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:11:37.921441 : ++ 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-21 21:11:46.712997 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:11:46.712997 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:11:46.712997 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:11:46.712997 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:11:46.712997 : ++ 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-21 21:15:43.279465 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:15:43.279465 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:15:43.279465 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:15:43.279465 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:15:43.279465 : ++ 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-21 21:16:58.381879 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:16:58.381879 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:16:58.381879 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:16:58.381879 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:16:58.381879 : ++ 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-21 21:18:25.241414 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:18:25.242487 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:18:25.242487 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:18:25.242487 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:18:25.242487 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:19:11.707859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:19:13] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:19:47.767445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:19:48.257867 : Create_E_Signature_For_E_Document -'utf-8' codec can't decode byte 0x9d in position 2: invalid start byte - Line : 602 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:19:48] "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-21 21:21:42.713466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:21:42.713466 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:21:42.713466 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:21:42.713466 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:21:42.713466 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:21:44.185006 : Security check : IP adresse '127.0.0.1' connected +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 : billardman01@hotmail.com 

\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 , 21/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

 


Code Sécurité = b\'Bp\'
' + dest = <_io.BufferedRandom name='./temp_direct/final_tmp_doc_76512.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 - - [21/Mar/2024 21:21:44] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:46.666579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:46.981458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:46.982859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:46.982859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:46.985581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:46.988440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.117111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.119478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.309311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.311338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.620015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.621015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.622014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.626014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.632013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.698200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.948244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.949354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:47.951379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.958235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:47.965160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.008524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.314633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:48.316648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.323151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:48.327443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.332458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:48.356492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.645239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.683680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.685682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:48.688683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.726689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.732679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:48.966806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.012972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.019987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.021303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.043661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.045664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.277836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.324118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.330474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.332876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.356641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.358653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.592659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.637983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.641001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.647070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.671313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.674327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.903178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.949281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:49.951790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.957424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.979913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:49.985918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.226232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.272556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:50.275607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:50.278630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.286211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.292844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.536613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.584952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:50.587957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.593285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:21:50.596818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:21:50.601303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:21:50] "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-21 21:22:48.169456 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:22:48.169456 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:22:48.169456 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:22:48.169456 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:22:48.169456 : ++ 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-21 21:26:24.340628 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:26:24.342055 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:26:24.342055 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:26:24.342055 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:26:24.342055 : ++ 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-21 21:27:14.430603 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:27:14.430603 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:27:14.430603 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:27:14.430603 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:27:14.430603 : ++ 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-21 21:27:37.022953 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:27:37.022953 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:27:37.022953 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:27:37.022953 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:27:37.022953 : ++ 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-21 21:28:15.801907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:28:15.801907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:28:15.801907 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:28:15.801907 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:28:15.801907 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:28:36.733826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:28:36] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:28:38.869774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:28:38] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:28:43.953009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:28:44.461955 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 21:28:44.463948 : 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 : cbalde@mysy-training.com 

\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 , 21/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_90696.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-21 21:28:45.508528 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 21:28:45.510592 : 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 : billardman01@hotmail.com 

\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 , 21/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_47159.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 - - [21/Mar/2024 21:28:46] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:28:46.315140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:28:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:29:35.447700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:29:35] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:30:08.037902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:30:08.133840 : Create_E_Signature_For_E_Document -'utf-8' codec can't decode byte 0xa2 in position 0: invalid start byte - Line : 609 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:30:08] "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-21 21:32:07.817114 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:32:07.817114 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:32:07.817114 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:32:07.817114 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:32:07.817114 : ++ 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-21 21:32:23.255316 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:32:23.255316 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:32:23.255316 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:32:23.255316 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:32:23.255316 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:32:30.706177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:32:31.371027 : Create_E_Signature_For_E_Document -'bytes' object has no attribute 'encode' - Line : 609 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:32:31] "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-21 21:32:59.938057 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:32:59.938569 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:32:59.938569 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:32:59.938569 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:32:59.938569 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:32:59.974929 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'$\\xe5\\xa2\\x91\\n\\xca\\x18\\xd0\\x9f!\\\\\\x8bi\\x83\\xc9\\x02\\x0b\\x8c\\xea\\xa8\\xf2|\\xf2\\x9a<\\xed&\\x98\\xe6\\xe8\\x03\\x95\\xcbN\\x10\\xe5\\x94\\xd0\\x9e\\xf8VvPe#\\x05\\xfa\\x8dy\\x02\\x8c&\\x8d\\xdd\\xcdI\\x89P\\x97\\xa9rr\\xca\\xc3N&\\x19\\xa2\\x04\\xa1\\t\\xfeN\\x12\\x0c\\x05\\x91.W\\xaeb\\x146\\x86~!w\\xc63\\x80\\xe2\\xffV_\\xa2j1\\xc66>\\xeb\\xaf\\xea\\xd9\\xdd\\x1f\\xd7' + dest = <_io.BufferedRandom name='./temp_direct/final_tmp_doc_09781.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 - - [21/Mar/2024 21:33:00] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.224352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.227346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.228350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.233765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.234796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.236800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.422884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.426417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.426417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.430329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.747882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.750736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.755030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.759975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.766736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.773856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.779748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.782310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.792401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.796499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.804021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.812557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.819845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.827142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.836487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.846007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.853774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.859479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.863882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.872529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.879189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.884228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.891119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.898177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.904868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.912880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.917427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.921364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.925371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.932017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.938135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.943368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.947914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.955271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.961968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.964969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.971210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.976069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.985589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:12.990140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:12.995359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.004489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.011092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.016610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.019870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.032121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.038244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.041375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.046414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.050036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.054963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.059983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.071063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.077102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.086343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.089360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.094786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.102121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:33:13.109281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:33:13.112794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:33:13] "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-21 21:40:54.272813 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:40:54.272813 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:40:54.272813 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:40:54.272813 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:40:54.272813 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 21:42:15.628224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:16] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:37.752429 : Security check : IP adresse '127.0.0.1' connected +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 : billardman01@hotmail.com 

\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 , 21/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

 


Code Sécurité = b\'\\xb0{\\xdd\\x94\\xd9\\xf9,\\x97o\\xe8\\xbb\\x80\\xb6\\x0b\\x13\\x82\\xf1:\\xd3\\x8f\\xe8\\x87\\x03;\\x81\\xad\\xb8\\xe4vdx\\xdb\'
' + dest = <_io.BufferedRandom name='./temp_direct/final_tmp_doc_44664.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 - - [21/Mar/2024 21:42:38] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:39.711678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:39.712763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:39.713771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:39.715783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:39.717297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:39.719814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.036151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.037156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.051894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.052968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.537002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.538019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.539489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.543498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.550880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.554618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.864020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.865520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.867543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.868686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:40.877836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:40.881745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.189472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.191376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.194413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.199621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.205745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.208432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.513438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.514469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.519039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.521368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.528893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.530304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.824541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.827585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.832673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.835575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:41.842057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:41.843059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.135271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.140310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.145815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.149081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.155472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.156483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.450024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.453024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.457032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.462033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.466612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.470405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.764608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.766608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.772610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.775611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:42.780591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:42.783268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.078356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:43.082126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.087214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:43.089604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.094427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.097887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.391803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:43.395811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.400769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.404255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 21:42:43.408714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 21:42:43.413222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 21:42:43] "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-21 21:44:02.863375 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:44:02.863375 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:44:02.863375 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:44:02.863375 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:44:02.863375 : ++ 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-21 21:47:26.815350 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:47:26.815350 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:47:26.815350 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:47:26.815350 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:47:26.815350 : ++ 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-21 21:49:13.998630 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:49:13.998630 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:49:13.998630 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:49:13.998630 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:49:13.998630 : ++ 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-21 21:51:05.217520 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:51:05.217520 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:51:05.217520 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:51:05.218502 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:51:05.218502 : ++ 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-21 21:52:14.710531 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:52:14.710531 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:52:14.710531 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:52:14.710531 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:52:14.710531 : ++ 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-21 21:52:28.063110 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:52:28.063110 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:52:28.063110 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:52:28.063110 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:52:28.063110 : ++ 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-21 21:52:54.829784 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:52:54.829784 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:52:54.829784 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:52:54.829784 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:52:54.829784 : ++ 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-21 21:53:35.169476 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:53:35.169476 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:53:35.170490 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:53:35.170490 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:53:35.170490 : ++ 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-21 21:54:01.247257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 21:54:01.247257 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 21:54:01.247257 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 21:54:01.248048 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 21:54:01.248048 : ++ 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-21 22:10:49.532251 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:10:49.532782 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:10:49.532782 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:10:49.532782 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:10:49.533821 : ++ 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-21 22:10:57.760414 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:10:57.761413 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:10:57.761413 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:10:57.761413 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:10:57.761413 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:11:27.556685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:11:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:11:30.383292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:11:30] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:11:35.436588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:11:36.488912 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:11:36.491910 : 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 : cbalde@mysy-training.com 

\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 , 21/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_23478.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-21 22:11:37.536018 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:11:37.539010 : 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 : billardman01@hotmail.com 

\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 , 21/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_56937.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 - - [21/Mar/2024 22:11:38] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:11:38.342799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:11:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:20.551329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:21] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:43.308001 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'\\xbe\\xb5Jz\\xbd\\x847";\\xae-: S\\xa0\\xe2\\t\\x15\\xc5\\x86\\xe9>\\xdd\\xa8\\x96\\x07\\xf2\\xc1\\xfa9c\\x88\'

url Sécurité = http://localhost:3009/E_Document/65fca2889950e83c52fea033/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/SK5fLu8
' + dest = <_io.BufferedRandom name='./temp_direct/final_tmp_doc_81797.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 - - [21/Mar/2024 22:12:43] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:45.982317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:45.983389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:45.985395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:45] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:45.993120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:45.994131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:45.994131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.309175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:46.311711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:46.312965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:46.314978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.501338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.810793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:46.811814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.816830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:46.820830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.824338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:46.828580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.121579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.124320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.132025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.136036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.142505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.147708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.444314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.447303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.450333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.456008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.459870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.464045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.754083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.761428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.762443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:47.769585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.771564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:47.775125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.065200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.071926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.074961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.082255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.084168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.088178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.379308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.385584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.386606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.396082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.398106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.400118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.691387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.697401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.699593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.708622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:48.709644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:48.714632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.000791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.008511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:49.009749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.018973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:49.023170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.026719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.314585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.320634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:49.322647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.328502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.334914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:49.335901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.629029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:12:49.632067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.634642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.639564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:12:49.645322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:13:34.885614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:13:34.892482 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:13:34] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:13:34.912466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:13:34.916228 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:13:34] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:15:17.487166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:15:17.491553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:15:17.497566 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:15:17] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:15:17.498679 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:15:17] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:15:26.339330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:15:26.343512 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:15:26] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:15:26.648671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:15:26.655094 : Get_Given_E_Document_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:15:26] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:16:59.972594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:16:59.976630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:16:59.986222 : Get_Given_E_Document_Signed_No_Token -Object of type bytes is not JSON serializable - Line : 951 +INFO:root:2024-03-21 22:16:59.986222 : Get_Given_E_Document_Signed_No_Token -Object of type bytes is not JSON serializable - Line : 951 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:16:59] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:16:59] "POST /myclass/api/Get_Given_E_Document_Signed_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-21 22:17:35.969759 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:17:35.969759 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:17:35.969759 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:17:35.969759 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:17:35.969759 : ++ 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-21 22:18:27.330472 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:18:27.331474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:18:27.331474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:18:27.331474 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:18:27.331474 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:19:01.490920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:19:01.493420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:19:01] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:19:01] "POST /myclass/api/Get_Given_E_Document_Signed_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-21 22:19:51.570885 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:19:51.571886 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:19:51.571886 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:19:51.571886 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:19:51.571886 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:20:22.488059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:20:22] "POST /myclass/api/Get_Given_E_Document_Signed_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-21 22:25:01.038018 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:25:01.039018 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:25:01.039018 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:25:01.039018 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:25:01.039018 : ++ 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-21 22:30:30.903636 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:30:30.903636 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:30:30.903636 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:30:30.904652 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:30:30.904652 : ++ 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-21 22:30:40.230690 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:30:40.230690 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:30:40.230690 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:30:40.230690 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:30:40.231728 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:31:35.249212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:31:35] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:31:37.645521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:31:37] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:31:44.069223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:31:44.716286 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:31:44.718308 : 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 : cbalde@mysy-training.com 

\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 , 21/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_52243.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-21 22:31:45.719250 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:31:45.720250 : 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 : billardman01@hotmail.com 

\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 , 21/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_47401.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 - - [21/Mar/2024 22:31:46] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:31:46.570950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:31:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:32:34.355793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:32:34] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:32:56.602866 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'(\\x83O4\\xcf\\x99u\\xea\\xf6\\xd9\\xb2bH\\xae\\xa8\\x96\\xaef\\x13C\\xb8\\xae\\xd5\\xc4I&\\x85\\xd5\\xca\\x1fs\\xfc\'

url Sécurité = http://localhost:3009/E_Document/65fca7409834c1021964cf9e/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/3ciWSKw
' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_10608.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-21 22:32:56.819500 : Create_E_Signature_For_E_Document -'SignedMessage' object has no attribute 'attach' - Line : 777 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:32:56] "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-21 22:34:16.453858 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:34:16.453858 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:34:16.453858 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:34:16.453858 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:34:16.453858 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:34:38.344371 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'(\\x83O4\\xcf\\x99u\\xea\\xf6\\xd9\\xb2bH\\xae\\xa8\\x96\\xaef\\x13C\\xb8\\xae\\xd5\\xc4I&\\x85\\xd5\\xca\\x1fs\\xfc\'

url Sécurité = http://localhost:3009/E_Document/65fca7409834c1021964cf9e/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/3ciWSKw
' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_60157.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 - - [21/Mar/2024 22:34:38] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:40.576365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:40.882767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:40.883878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:40.883878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:40.885242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:40.886745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.025455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.027550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.209180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.209180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.519648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.522012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.524628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.530455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.531841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.598582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.831640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.837741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:41.838739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.845740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.851738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:41.909313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.173718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.174723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.177394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.178714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.186169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.216011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.537116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.581151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.593673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.598704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.612714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.620697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.869059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.902166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.908441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.912554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:42.929850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:42.932855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.181673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.213886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.219360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.222396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.245606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.248640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.495072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.525806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.530761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.534086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.556609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.559623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.805374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.836373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.842605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.845142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:43.867607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:43.870643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.116187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.147081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.154055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:44.155126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.192339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:44.195346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.424808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.456758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.470137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:44.473133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:34:44.503168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:34:44.505161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:34:44] "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-21 22:37:52.666825 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:37:52.666825 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:37:52.666825 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:37:52.666825 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:37:52.666825 : ++ 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-21 22:40:51.246911 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:40:51.246911 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:40:51.247917 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:40:51.247917 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:40:51.247917 : ++ 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-21 22:43:26.410564 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:43:26.410564 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:43:26.410564 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:43:26.410564 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:43:26.410564 : ++ 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-21 22:43:49.496302 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:43:49.497302 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:43:49.497302 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:43:49.497302 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:43:49.497302 : ++ 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-21 22:45:11.116400 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:45:11.117399 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:45:11.117399 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:45:11.117399 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:45:11.117399 : ++ 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-21 22:50:49.970126 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:50:49.971127 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:50:49.971127 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:50:49.971127 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:50:49.971127 : ++ 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-21 22:52:36.542808 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:52:36.542808 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:52:36.542808 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:52:36.542808 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:52:36.543810 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:53:07.654941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:53:07] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:53:09.872427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:53:09] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:53:15.534252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:53:16.857863 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:53:16.862873 : 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 : cbalde@mysy-training.com 

\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 , 21/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_92865.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-21 22:53:19.389004 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 22:53:19.392914 : 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 : billardman01@hotmail.com 

\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 , 21/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_38212.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 - - [21/Mar/2024 22:53:20] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:53:20.528253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:53:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:54:04.670814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:54:05] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:54:26.301602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:54:26.552769 : Create_E_Signature_For_E_Document -can only concatenate str (not "bytes") to str - Line : 629 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:54:26] "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-21 22:55:36.895089 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:55:36.895089 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:55:36.895089 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:55:36.895089 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:55:36.895089 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:55:48.758894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:55:49.805530 : Create_E_Signature_For_E_Document -can only concatenate str (not "bytes") to str - Line : 629 +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:55:49] "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-21 22:56:23.888013 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:56:23.889019 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:56:23.889019 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:56:23.889019 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:56:23.889019 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:56:23.940053 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'\\xaf\\x94\\x94f6t\\x04\\x00J\\n\\xee\\x8d \\x1e\\xbe\\xb5\\x85\\xb5\\r\\xe0\\x85T\\xbb\\xf5\\x08\\xa8\\xd4Vj5\\x1f\\x92\'

url Sécurité = http://localhost:3009/E_Document/65fcac4da8fde6b0765a0717/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/enOGtR4

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_26732.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] +DEBUG:xhtml2pdf:FileObject 'b', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:25] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:33.525675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:33.844016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:33.845018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:33.848536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:33.849534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:33.853544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:33] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:33] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:33] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:34.082754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.085756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.167083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.171082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:34.697269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.701485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:34.707906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.710395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.711594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:34.717058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.023680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.026078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.040602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.042624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.043615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.045735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.381529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.383351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.384393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.387730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.400566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.404306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.713207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:35.715198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.728285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.764526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.784673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:35.817990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.037390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.083054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.087641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.114795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.117367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.130931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.359681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.413849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.419416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.434508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.438568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.450846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.699142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.738763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.744295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.755298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:36.771302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:36.797308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.009127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.055973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.057441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.083606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.090675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.109265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.322141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.370184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.374400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.401331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.406335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.425010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.636999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.685009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.689351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.719327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 22:56:37.723316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:56:37.736823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-21 22:58:16.393419 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:58:16.393419 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:58:16.393419 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:58:16.393419 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:58:16.393419 : ++ 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-21 22:58:47.532230 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:58:47.532230 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:58:47.532230 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:58:47.532230 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:58:47.532230 : ++ 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-21 22:59:08.740614 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 22:59:08.740614 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 22:59:08.740614 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 22:59:08.740614 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 22:59:08.740614 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 22:59:34.894806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:59:35] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 22:59:58.842394 : Security check : IP adresse '127.0.0.1' connected +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 : billardman01@hotmail.com 

\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 , 21/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

 


Code Sécurité = b\'\\xf1\\x8d\\xd8\\xe4\\x9fe\\x96\\x82/&N\\xb0:\\xc7\\xf9\\x98d\\x0f\\xa5\\x8d\\xda4F\\xda\\xc6X\\xb6\\xfdEN*T\'

url Sécurité = http://localhost:3009/E_Document/65fcac4fa8fde6b0765a071b/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/AcaOrJs

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_31488.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] +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,b', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 22:59:59] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:01.787789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:01.790300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:01.791311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:01.793723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:01.796378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:01.800433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.170761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:03.172298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.420738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:03.422719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:03.488049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.792414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:03.796412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.804109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.811676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.816689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:03.878850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.113972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.127433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:04.129429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:04.136436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.151493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.192315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.431380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.463417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:04.464907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.473565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.482512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.502233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.743756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.791214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:04.793291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.801591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.810521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:04.818729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.058748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.121212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.125108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.135950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.138424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.139423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.373658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.450061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.453705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.459720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.468008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.478736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.687624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.781172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.784168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.792121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.797556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:05.803246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:05.999920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.110665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:06.113514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.135707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:06.143719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:06.155143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.310305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.435041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.446728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.482955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:06.484978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:00:06.493504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.622689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.750453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.760336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.810630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:00:06.816178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:00: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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-21 23:01:30.379027 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:01:30.379027 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:01:30.379027 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:01:30.379027 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:01:30.380027 : ++ 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-21 23:03:08.610146 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:03:08.610146 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:03:08.610146 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:03:08.610146 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:03:08.610146 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 23:03:28.121585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:03:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:03:31.038815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:03:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:03:36.829467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:03:37.843213 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:03:37.846965 : 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 : cbalde@mysy-training.com 

\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 , 21/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_96055.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-21 23:03:42.081542 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:03:42.084211 : 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 : billardman01@hotmail.com 

\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 , 21/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_30264.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 - - [21/Mar/2024 23:03:43] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:03:43.291654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:03:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:04:36.149302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:04:37] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:04:59.758806 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'\\xea^\\xb3\\r\\xa38\\xbb\\x8d\\xe4\\xd0n\\x07\\xbc\\xc7\\n\\x88\\xb4\\x1eI\\xf3`+y\\x01\\xa2\\x89\\xfd3\\xa4:\\x17u\'

url Sécurité = data:image/png;base64,b\'iVBORw0KGgoAAAANSUhEUgAAATEAAAExAQAAAAA8HqjFAAACeElEQVR42u1aO47jMAxl1oXKHEE3iS9mwAZ8sfgmOoJLFYY571HKzJbT7T5ABsbwICxMkO+nxPxX12ajbtSNulE36kbdqPvf695mlu7Prc5+5TqfeHz0uj/2u+tf1fU+DvylA22ZPa+c7icaPM61faDUx2l8+73gxS+04BvnsVhS7OM4F94whXd0pNqHf6PiZUs2yXk0fFzZHudakp+TJ0V8BF/1vfq56fFVXLetDsr1kvqa/cXPOvPASoGq6gtPKcZDsLMtpT5IufVF6XDfvengi5/K4Xx36Id7Jc754pm9ud48IHwGfARfsRkn+crNg30QFaEfOegLcNlLEsM5BQMtxDymYtymSjHUm4ezBf4L6cCNpAXYq/Fud/A7RT2s1YS2wizKzaOEajingCeYk4OKKIePxSqhgRw1/eiHHD4cbAt8LLC6z54/Pooo1wdXypy5lpady4XJyPnE0A/yLlaqdUR82Kzn20MwIs3iCWsWjlEOHwiAFiLCfE5lZ5gqer597c3MJK2AOO2vHM5belpp3jf6q6nph1oefEMHG9uGlM+xZoL4CD2/uUgPUq57O8nKppc/eBq65e7W4ROhiII6CJ/Y5jHz3Ofu+dzV/BUxHZE2dJDoLlSSXOXOqTcLo44NuxhCIB23TXJ+lyxVjYt0nEG59LuC+sEz6Yi0kT8qId7OGF3wPPH9JNitR8FwKHI6aO1818JksaMccUSQr8CxeHEe8paWBx+uiI/wIHtbqfSJ61mPr+J0GtEj8odZk44i+f0gzXslPlqkNcV5xPdR59J9SZMT6GCdFfmKboT5IyQwztsl9WP8PmLUjbpRN+pG3ajTrPsCAPgiEXEb5HIAAAAASUVORK5CYII=\'

qr code :

QR_CODE
yyyyy

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_33387.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] +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,b', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:01] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:03.176385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.178525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.182382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.191379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.196377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.201381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:03.467460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.530140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:03.592139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:03.599687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.017307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.024766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.035781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.044791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.049312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.065324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.079417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.100971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.111561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.118749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.126997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.135155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.142891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.149422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.160424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.175333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.181882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.187135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.202509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.219514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.223822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.234155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.241674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.248246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.260026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.268974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.289050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.294474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.305217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.318230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.326919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.336332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.344609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.358078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.375508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.388557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.395545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.402166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.415192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.417676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.436883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.441490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.459022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.463024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.470022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.482656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.497672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.510131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.515219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.528140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.541361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.548507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.562182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.573609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.577704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.599084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.604084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.613083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:05:04.625086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:05:04.636108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:05:04] "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-21 23:09:21.743652 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:09:21.743652 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:09:21.743652 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:09:21.743652 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:09:21.743652 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 23:12:02.313502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:12:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:12:04.712058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:12:04] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:12:09.757306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:12:10.823558 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:12:10.827572 : 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 : cbalde@mysy-training.com 

\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 , 21/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_83791.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-21 23:12:19.447223 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:12:19.450227 : 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 : billardman01@hotmail.com 

\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 , 21/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_97234.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 - - [21/Mar/2024 23:12:20] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:12:20.444384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:12:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-21 23:15:04.512242 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:15:04.512242 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:15:04.512242 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:15:04.512242 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:15:04.513243 : ++ 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-21 23:15:54.436220 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:15:54.436220 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:15:54.436220 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:15:54.436220 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:15:54.436220 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 23:16:14.531785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:16:14] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:16:16.684617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:16:16] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:16:21.049508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:16:22.337281 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:16:22.340322 : 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 : cbalde@mysy-training.com 

\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 , 21/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_86178.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-21 23:16:25.369023 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-21 23:16:25.373041 : 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 : billardman01@hotmail.com 

\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 , 21/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_21848.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 - - [21/Mar/2024 23:16:26] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:16:26.426503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:16:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:17:33.117027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:17:36] "POST /myclass/api/Get_Given_E_Document_Not_Signed_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-21 23:18:18.651421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-21 23:18:18.652417 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-21 23:18:18.652417 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-21 23:18:18.652417 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-21 23:18:18.652417 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-21 23:18:27.533207 : Security check : IP adresse '127.0.0.1' connected +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 : cbalde@mysy-training.com 

\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 , 21/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

 


Code Sécurité = b\'G\\xb8\\x19-\\\\\\xf2\\x06`\\xbf\\xb3q\\xa1Z\\xbcX\\x92H\\x84~M\\xb7\\xb6\\x03I\\\\C_\\xd2c\\x05\\x98\\x85\'

url Sécurité = http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco

qr code :

QR_CODE
yyyyy

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_62655.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] +DEBUG:xhtml2pdf:FileObject 'http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='localhost:3009', path='/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco', params='', query='', fragment=''), 'http') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco with httplib +DEBUG:xhtml2pdf:Received non-200 status: 404 Not Found +DEBUG:xhtml2pdf:Uri parsed: http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco +DEBUG:xhtml2pdf:Sending request for http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco with httplib +DEBUG:xhtml2pdf:Received non-200 status: 404 Not Found +DEBUG:xhtml2pdf:Uri parsed: http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco +DEBUG:xhtml2pdf:Sending request for http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco with httplib +DEBUG:xhtml2pdf:Received non-200 status: 404 Not Found +DEBUG:xhtml2pdf:Uri parsed: http://localhost:3009/E_Document/65fcb1b64e4216c7a4f9aa95/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/Zop9zco +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:35] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:42.285636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.287654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.290170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.293890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.299245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.303333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:42.640618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.645730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.646257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:42.648294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.325162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.327176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.328709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.330151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.339457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.348348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.655099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.668313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.669576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.671354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.673367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:43.674369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:43.978173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.009995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.020143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.022684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.026974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.035363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.304462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.334737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.347568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.351887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.363267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.369040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.618300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.647766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.665019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.675526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.684036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:44.688383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.931070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.964122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.976361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:44.988357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.005349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.028347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.243697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.274697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.286488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.300432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.320638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.351879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.555954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.585412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.598194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.611803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.631633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.665392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.869668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.900844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.910456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.923446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.948206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:45.976577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:46.178245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:46.214398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:46.227386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-21 23:18:46.235537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:46.259027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:18:46.291811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:18:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:19:16.954565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:19:16] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-21 23:19:16.962101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Mar/2024 23:19:16] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - diff --git a/main.py b/main.py index 9f9e5c8..d699188 100644 --- a/main.py +++ b/main.py @@ -7986,8 +7986,18 @@ def Create_E_Document(): """ -API Pour recuperer un documen électronique +API Pour recuperer un documen électronique deja signé. c'est a dire pour un controle d'une tierce partie """ +@app.route('/myclass/api/Get_Given_E_Document_Signed_No_Token/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_E_Document_Signed_No_Token(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_E_Document_Signed_No_Token payload = ",payload) + status, retval = E_Sign_Document.Get_Given_E_Document_Signed_No_Token(payload) + return jsonify(status=status, message=retval) + + """ API pour ajouter un document electronique à signer """