27/12/2022 - 11h00
parent
c4b91143a2
commit
1afd2081c9
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="1122d9e2-679f-46d6-8c4f-97e9ae4041b5" name="Changes" comment="20/12/22 - 15h30">
|
||||
<list default="true" id="1122d9e2-679f-46d6-8c4f-97e9ae4041b5" name="Changes" comment="24/12/2022 - 15h00">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Inscription_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/Inscription_mgt.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Log/log_file.log" beforeDir="false" afterPath="$PROJECT_DIR$/Log/log_file.log" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/email_inscription_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/email_inscription_mgt.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Session_Formation.py" beforeDir="false" afterPath="$PROJECT_DIR$/Session_Formation.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/class_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/class_mgt.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/prj_common.py" beforeDir="false" afterPath="$PROJECT_DIR$/prj_common.py" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
|
@ -164,7 +164,14 @@
|
|||
<option name="project" value="LOCAL" />
|
||||
<updated>1671545843110</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="14" />
|
||||
<task id="LOCAL-00014" summary="24/12/2022 - 15h00">
|
||||
<created>1671890429738</created>
|
||||
<option name="number" value="00014" />
|
||||
<option name="presentableId" value="LOCAL-00014" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1671890429738</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="15" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="Vcs.Log.Tabs.Properties">
|
||||
|
@ -191,7 +198,8 @@
|
|||
<MESSAGE value="16/12/2022 - 22h00" />
|
||||
<MESSAGE value="20/12/22 - 11h30" />
|
||||
<MESSAGE value="20/12/22 - 15h30" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="20/12/22 - 15h30" />
|
||||
<MESSAGE value="24/12/2022 - 15h00" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="24/12/2022 - 15h00" />
|
||||
</component>
|
||||
<component name="XDebuggerManager">
|
||||
<breakpoint-manager>
|
||||
|
|
|
@ -46,7 +46,8 @@ def AddStagiairetoClass(diction):
|
|||
# field_list.
|
||||
'''
|
||||
field_list = ['nom', 'prenom', 'email', 'telephone', 'modefinancement', 'opco',
|
||||
'class_internal_url', 'session_id', 'employeur', 'status', 'price']
|
||||
'class_internal_url', 'session_id', 'employeur', 'status', 'price',
|
||||
'inscription_validation_date']
|
||||
incom_keys = diction.keys()
|
||||
for val in incom_keys:
|
||||
if val not in field_list:
|
||||
|
@ -105,6 +106,12 @@ def AddStagiairetoClass(diction):
|
|||
if diction['telephone']:
|
||||
mydata['telephone'] = diction['telephone']
|
||||
|
||||
if ("inscription_validation_date" in diction.keys()):
|
||||
if diction['inscription_validation_date']:
|
||||
mydata['inscription_validation_date'] = diction['inscription_validation_date']
|
||||
|
||||
|
||||
|
||||
if ("email" in diction.keys()):
|
||||
if diction['email']:
|
||||
mydata['email'] = diction['email']
|
||||
|
@ -176,9 +183,7 @@ def AddStagiairetoClass(diction):
|
|||
if( local_status is False):
|
||||
mycommon.myprint(" WARNING : Impossible d'envoyer le mail de preinscriton à "+
|
||||
str(inspect.stack()[0][3]) + " - l'adresse email " + str(
|
||||
mydata['email']) + " pour la sessio " + str(mydata['session_id']) + " ")
|
||||
|
||||
|
||||
mydata['email']) + " pour la session " + str(mydata['session_id']) + " ")
|
||||
|
||||
|
||||
else:
|
||||
|
@ -918,6 +923,9 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None):
|
|||
return False, " Le champs status de ligne " + str(n) + " est incorrecte. Valeurs acceptées : 0,1,2"
|
||||
|
||||
|
||||
if( str(df['status'].values[n]).strip() == "1"):
|
||||
mydata['inscription_validation_date'] = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S"))
|
||||
|
||||
mydata['class_internal_url'] = str(session_data['class_internal_url'])
|
||||
|
||||
|
||||
|
@ -1417,6 +1425,8 @@ def PrintAttendeeCertification(diction):
|
|||
my_retrun_dict['code_postal'] = local_Insc_retval['code_postal']
|
||||
my_retrun_dict['internal_url'] = local_Insc_retval['class_internal_url']
|
||||
|
||||
my_retrun_dict['formateur'] = session_formation['formateur']
|
||||
|
||||
my_retrun_dict['adresse'] = local_Insc_retval['adresse']
|
||||
my_retrun_dict['nom'] = local_Insc_retval['nom']
|
||||
my_retrun_dict['prenom'] = local_Insc_retval['prenom']
|
||||
|
|
968
Log/log_file.log
968
Log/log_file.log
|
@ -920561,3 +920561,971 @@ INFO:root:2022-12-24 14:56:59.685793 : Security check : IP adresse '127.0.0.1'
|
|||
INFO:werkzeug:127.0.0.1 - - [24/Dec/2022 14:56:59] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-24 14:57:09.099195 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [24/Dec/2022 14:57:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:20.239366 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-25 12:09:20.240367 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-25 12:09:20.240367 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-25 12:09:20.240367 : ++ FLASK PORT 5001 ++
|
||||
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
|
||||
* Running on http://localhost:5001
|
||||
INFO:werkzeug:[33mPress CTRL+C to quit[0m
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-25 12:09:28.147344 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-25 12:09:28.148342 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-25 12:09:28.148342 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-25 12:09:28.148342 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-25 12:09:28.322780 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:28.323759 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:28.326760 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:28.329761 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:28] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:28] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:28] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:35.004656 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:35.005664 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:35.674037 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:35.675044 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.504152 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.507148 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.510153 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.513147 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.516146 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.520166 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.526163 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.530158 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.532207 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.537220 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.541230 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.545242 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.547249 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.550246 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.560499 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.562505 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.566502 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.570512 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:36.572503 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:36.578500 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:40.623713 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:41.163851 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-25 12:09:40.624711 , _id = 638139d0934a818b1f6f85f7
|
||||
INFO:root:2022-12-25 12:09:41.171368 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:41.372763 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:41.376370 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:41.379402 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:41.393394 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:41.635671 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:09:46.226102 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:46.228107 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:09:46.230112 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:46] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:09:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:10:13.323601 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:10:13.325607 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:10:13.328652 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:10:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:10:13.331608 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:10:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:10:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:10:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:10:14.467223 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:10:14] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:12:25.629684 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:12:25.633692 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:12:25.635677 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:25] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:12:30.419863 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:12:30.421997 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:12:30.426568 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:30] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:12:30.449558 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:30] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:12:31.337189 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:12:31] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:06.401402 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:14:06.403404 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:14:06.405401 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:10.224493 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:14:10.227857 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:14:10.229927 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:10.233926 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:11.095568 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:11] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:15.093880 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:15] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:41.369691 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:14:41.372697 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:41] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:14:41.375694 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:14:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:22.961967 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:22.963960 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:22.966960 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:26.014102 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:26.017101 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:26.019101 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:26] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:29.692752 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:29.695748 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:17:29.697745 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:29.702749 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:30.572655 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:30] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:17:34.899878 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:17:34] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:37.508924 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:37.511927 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:37.513916 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:40.633635 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:40.635623 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:40.639156 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:43.432752 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:43.434747 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:18:43.437745 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:43.442004 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:44.317233 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:44] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:18:47.062336 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:18:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:17.039511 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:20:17.041518 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:20:17.044522 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:17] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:26.299451 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:20:26.301447 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:26] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:26.305447 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:28.712612 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:20:28.715620 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:28.718622 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:20:28.721609 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:29.612232 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:29] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:20:32.521820 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:20:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:10.714465 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:10.717464 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:10.719972 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:13.735531 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:13.737539 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:13.739551 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:13] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:16.865790 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:16.867797 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:16.871799 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:16.873794 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:17.760909 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:17] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:21.587598 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:21] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:51.320855 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:51.322854 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:51.325862 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:51] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:56.973493 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:56.976507 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:56.979501 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:59.415790 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:21:59.419311 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:59.422311 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:21:59.426313 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:21:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:22:00.308277 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:22:00] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:22:03.244181 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:22:03] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:22:21.319238 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:22:21.321233 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:22:21.325231 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:22:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:22:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:22:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:28.486852 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:28.488856 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:28.490865 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:28] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:44.787131 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:44.790131 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:44.792133 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:47.896696 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:47.901689 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:47.903688 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:25:47.905687 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:48.786866 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:48] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:25:52.674192 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:25:52] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:26:43.567977 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:43.569973 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:43.572984 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:43] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:26:55.369653 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:55.372651 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:55.375650 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:26:58.174515 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:58.176528 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:26:58.179546 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:26:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:27:00.513439 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:27:00.516434 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:27:00.518439 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:27:00.524075 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:27:01.388415 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:01] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:27:11.139474 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:27:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:28:27.513311 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:28:27.516309 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:28:27.518305 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:28:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:28:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:28:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:08.683625 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:08.686629 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:08.689625 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:08] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:18.462543 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:18.464547 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:18.466556 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:18] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:21.973494 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:21.976491 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:29:21.977491 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:21.983493 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:22.826840 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:22] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:29:25.872220 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:29:25] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:04.711278 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:33:04.713283 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:33:04.715281 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:04] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:09.355403 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:33:09.357403 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:09] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:09.361413 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:12.096898 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:33:12.100911 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:12.103910 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:33:12.106902 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:13.000198 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:13] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:33:15.776469 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:33:15] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:36:01.393880 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:36:01.395878 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:36:01.398892 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:36:06.269976 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:36:06.271513 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:36:06.276140 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:36:06.279127 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:36:07.210255 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:07] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:36:09.927613 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:36:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:19.527626 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:38:19.531627 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:19] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:19.535634 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:25.454660 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:25.460645 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:25.468642 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:25.481650 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:38:26.385781 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:38:26] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:39:09.693654 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:39:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:41:33.857972 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-25 12:41:33.860973 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:41:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 12:41:33.865991 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:41:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [25/Dec/2022 12:41:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-25 14:53:06.663730 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-25 14:53:06.664731 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-25 14:53:06.664731 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-25 14:53:06.664731 : ++ FLASK PORT 5001 ++
|
||||
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
|
||||
* Running on http://localhost:5001
|
||||
INFO:werkzeug:[33mPress CTRL+C to quit[0m
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-25 14:53:18.046160 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-25 14:53:18.046160 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-25 14:53:18.046160 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-25 14:53:18.046160 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 09:05:21.753513 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:05:21.754508 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:05:21.754508 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:05:21.754508 : ++ FLASK PORT 5001 ++
|
||||
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
|
||||
* Running on http://localhost:5001
|
||||
INFO:werkzeug:[33mPress CTRL+C to quit[0m
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 09:05:34.819104 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:05:34.819104 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:05:34.819104 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:05:34.819104 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 09:06:04.329035 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:04.332035 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:06:04.859176 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:04.861159 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:06:05.849314 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:05.850322 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:05.851325 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:05.851325 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:05.853326 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:05.854320 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:06:06.183814 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.184815 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.185816 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.186811 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.187818 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.189813 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:06:06.512683 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.513680 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.513680 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.514673 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.515672 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.516675 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:06:06.842046 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:06:06.844045 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:06:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 09:13:31.607705 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:13:31.608753 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:13:31.608753 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:13:31.608753 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 09:25:56.684651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:25:56.684651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:25:56.684651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:25:56.684651 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 09:27:55.279040 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:27:55.279040 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:27:55.279040 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:27:55.279040 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 09:32:33.753047 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 09:32:33.753047 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 09:32:33.753047 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 09:32:33.753047 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 09:37:36.085034 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:36.086044 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:36.674047 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:36.676043 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.124698 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.126711 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.129705 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.135703 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.137700 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.142720 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.145721 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.150717 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.153714 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.156728 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.163276 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.165262 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.169797 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.172814 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.177814 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.180815 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.191908 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:37.194909 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.196908 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:37.198912 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:42.459900 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:43.107463 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-27 09:37:42.460876 , _id = 638139d0934a818b1f6f85f7
|
||||
INFO:root:2022-12-27 09:37:43.113461 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:43] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:43.352370 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:43.355390 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:43.359382 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:43.362381 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:43.650109 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:37:54.864010 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:54.867015 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:37:54.870044 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:37:54] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:01.651813 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:01.658039 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:38:01.659034 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:38:01.660030 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:03.287437 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:03] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:05.234399 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:05] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:16.449261 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:16] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:28.730326 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:28] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:38:36.737510 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:38:36] "[35m[1mGET /myclass/api/PrintAttendeeCertification/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0101202305012023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1[0m" 500 -
|
||||
INFO:root:2022-12-27 09:43:34.168764 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:43:34.170279 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:43:34.174299 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:43:34] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:43:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:43:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:44:30.408097 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:44:30.411095 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:44:30.414122 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:44:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:44:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:44:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:26.328473 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:45:26.332470 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:45:26.336469 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:26] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:31.001981 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:45:31.004992 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:31.009012 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:35.576863 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:45:35.579865 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:45:35.584859 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:35.590114 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:45:36.962444 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:45:36] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:46:44.599704 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:44.603703 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:44.605710 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:46:48.301562 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:48.303562 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:48.305570 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:48] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:46:51.562454 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:51.565472 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:46:51.569465 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 09:46:51.573000 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:46:52.523886 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:46:52] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:47:04.189412 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:47:04] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 09:47:09.467585 : Security check : IP adresse '127.0.0.1' connected
|
||||
DEBUG:xhtml2pdf:pisaDocument options:
|
||||
src = '<!DOCTYPE html>\n<html>\n\n<body style=" width:290mm; margin-left: auto; margin-right: auto;border-style: double;margin-top: 2rem; padding:1rem;">\n\t<div style="padding-top:10px;text-align:left;width:30%; border: #454349;float: left;">\n\t\t<img src="http://88.170.110.220/img/MYSY-LOGO-BLUE.png" alt="Mysy Training Logo" width="80px" />\n\t</div>\n\n\t<div style="padding-top:10px;text-align:center;width:70%; border: #454349; float: center;">\n\t\t<h3> ATTESTION INDIVIDUELLE DE FORMATION </h3>\n\t</div>\n\n\n\t<hr />\n\t<div\n\t\tstyle="padding:0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.5rem;padding: 0px">\n\t\t<div style="width:100%">\n\t\t\t<div style="text-align:center;">\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Formation </nav>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:center;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem; line-height: 2rem;">\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPar la presente, l\'oganisme de formation au Numero de declaration\n\t\t\t\t\t\t <br />\n\t\t\t\t\t\tatteste que balde sekou a suivi la formation <br />\n\t\t\t\t\t<b>\t"" </b> <br />\n\t\t\t\t\t\trealisé par le formateur cherif balde\n\t\t\t\t\t</p>\n\n\t\t\t\t\t<p>\n\t\t\t\t\t\tCette formation a eu lieu du 01/01/2023 au 05/01/2023 à l\'adresse\n\t\t\t\t\t\t:2 place de la republique\n\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem">\n\n\t\t\t\t\t<div style="width: 100%; margin-bottom: 5rem;">\n\t\t\t\t\t\tContenus de la formation : <br />\n\t\t\t\t\t\t\n\n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 30%; float: left;">\n\t\t\t\t\t\tFait à roissy en brie le \n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 70%; float: left;text-align: right;">\n\t\t\t\t\t\tPour l\'organisme de formation <br />\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t</div>\n\n\n\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t\n\n\n\t\t</div>\n\n\t</div>\n\t<hr />\n\t<div style="text-align: right;"> Date impression : </div>\n</body>\n\n</html>'
|
||||
dest = <_io.BufferedRandom name='./temp_directAttestation_.pdf'>
|
||||
path = None
|
||||
link_callback = None
|
||||
xhtml = False
|
||||
context_meta = None
|
||||
DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
|
||||
DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http')
|
||||
DEBUG:xhtml2pdf:Parsing img tag, src: <xhtml2pdf.files.pisaFileObject object at 0x000001C7AB5FF890>
|
||||
DEBUG:xhtml2pdf:Attrs: {'src': <xhtml2pdf.files.pisaFileObject object at 0x000001C7AB5FF890>, 'width': 60.0, 'height': None, 'align': None, 'id': None}
|
||||
DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib
|
||||
DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 09:47:09] "GET /myclass/api/PrintAttendeeCertification/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0101202305012023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:22:24.354091 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:22:24] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:22:28.376910 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:22:28] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:22:31.756685 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:22:31] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:24:11.270803 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:24:11.390913 : Add_Update_SessionFormation_mass -'duree' - ERRORRRR AT Line : 482
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:24:11] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 10:25:21.547530 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 10:25:21.548882 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 10:25:21.548882 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 10:25:21.548882 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 10:25:21.759018 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:21] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:25:22.067510 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:25:28.701062 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:25:28.705059 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:25:28.712067 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:25:28.718087 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:25:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 10:26:39.379089 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 10:26:39.380089 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 10:26:39.380089 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 10:26:39.380089 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 10:26:49.933849 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:26:49.936852 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:26:49.939845 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:26:49] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:26:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:26:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:26:57.141776 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:26:57] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:26:57.704080 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:26:57] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:27:02.280058 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:27:02.285064 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:27:02.289049 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:27:02.294053 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:27:15.763601 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:15] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:27:21.620581 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:27:21] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:15.191491 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:19] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:37.521835 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:28:37.525360 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:28:37.528361 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:41.630610 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 10:28:41.635596 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:41.640594 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:41.646311 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:42.842715 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:42] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 10:28:50.574111 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 10:28:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 10:30:03.557647 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 10:30:03.557647 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 10:30:03.557647 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 10:30:03.557647 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 10:30:52.935691 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 10:30:52.937294 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 10:30:52.937294 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 10:30:52.937294 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 10:32:28.071739 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 10:32:28.071739 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 10:32:28.071739 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 10:32:28.071739 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 11:08:01.418619 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 11:08:01.418619 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 11:08:01.418619 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 11:08:01.418619 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 11:12:52.407263 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 11:12:52.407263 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 11:12:52.407263 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 11:12:52.407263 : ++ FLASK PORT 5001 ++
|
||||
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
|
||||
* Running on http://localhost:5001
|
||||
INFO:werkzeug:[33mPress CTRL+C to quit[0m
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 11:13:01.156889 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 11:13:01.156889 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 11:13:01.156889 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 11:13:01.156889 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 11:13:16.954298 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:16.957291 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:16.960296 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:25.079469 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:25.082469 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:25.086462 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:25.088463 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:26.239077 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:26] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:36.528873 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:38] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:44.119040 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:44.122062 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:44.126058 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:49.537010 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:49.541020 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:49.545025 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:13:49.547017 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:13:50.446493 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:13:50] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:14:11.030276 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:14:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading
|
||||
INFO:werkzeug: * Restarting with stat
|
||||
INFO:root:2022-12-27 11:17:22.061522 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
|
||||
INFO:root:2022-12-27 11:17:22.061522 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
|
||||
INFO:root:2022-12-27 11:17:22.061522 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
|
||||
INFO:root:2022-12-27 11:17:22.061522 : ++ FLASK PORT 5001 ++
|
||||
WARNING:werkzeug: * Debugger is active!
|
||||
INFO:werkzeug: * Debugger PIN: 127-713-359
|
||||
INFO:root:2022-12-27 11:17:31.485365 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:17:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:17:53.308195 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:17:54] "POST /myclass/api/SendTrainingEvaluationEmail/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:18:30.029646 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:18:30.030649 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:18:30.033649 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "POST /myclass/api/MySyckeckEvaluationToken/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:18:30.268034 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "[33mPOST /myclass/api/ckeckEvaluationToken/ HTTP/1.1[0m" 404 -
|
||||
INFO:root:2022-12-27 11:18:30.556159 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:18:30.557157 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:30] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:18:42.347621 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:42] "POST /myclass/api/Evaluation_Class/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:18:58.787097 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:18:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:19:06.696992 : Security check : IP adresse '127.0.0.1' connected
|
||||
DEBUG:xhtml2pdf:pisaDocument options:
|
||||
src = '<!DOCTYPE html>\n<html>\n\n<body style="padding:20px 20px;padding-top:0px">\n\t<div style="padding:0px;text-align:right;width:100%">\n\t\t<img src="http://88.170.110.220/img/MYSY-LOGO-BLUE.png" alt="Mysy Training Logo" width="80px" /> </h2>\n\t</div>\n\t\n\t<div style="padding:0px;text-align:center;width:100%">\n\t\t<img src=https://img.mysy-training.com/3il/3il_img.png alt="Mysy Training Logo" width="100px" /> </h2>\n\t</div>\n\t\n\t<div\n\t\tstyle="padding:0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.5rem;padding: 0px">\n\t\t<div style="width:100%">\n\t\t\t<div style="text-align:center;">\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Formation </nav>\n\t\t\t\t<hr />\n\n\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:0.9rem">\n\n\t\t\t\t\tInstitut de formation : 3IL <br />\n\t\t\t\t\tFormation : Objets connectés et IoT <br />\n\t\t\t\t\tDate session : 01/05/2023 24:00:00 au 01/05/2023 24:00:00 <br />\n\t\t\t\t\tAdresse : 2 place de la republique <br />\n\t\t\t\t\tFormateur : 3IL <br /> \n\n\t\t\t\t</div>\n\n\n\n\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t<div>\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Stagiaire </nav>\n\t\t\t\t<hr />\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:0.9rem">\n\n\t\t\t\t\tNom & Prénom : balde2 sekou2<br />\n\t\t\t\t\tTéléphone : telephone <br />\n\t\t\t\t\tEmail : billardman1@yahoo.fr <br />\n\t\t\t\t\tAdresse : 2 place de la republique, 77680 roissy en brie <br />\n\t\t\t\t\tDate inscription : <br />\n\t\t\t\t\tEmployeur : employeur <br />\n\t\t\t\t\tMode de financement : modefinancement <br />\n\n\n\n\t\t\t\t</div>\n\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t<div>\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Presence </nav>\n\t\t\t\t<hr />\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:0.9rem;width:100%;float:right;text-align:left;">\n\t\t\t\t\t<table style="width:100%;border: 1px solid black;padding: 0px; text-align:left;">\n\t\t\t\t\t\t<tr\n\t\t\t\t\t\t\tstyle="border: 1px solid black;padding: 0px; padding-top:5px; text-align: left;padding-left: 1px;">\n\t\t\t\t\t\t\t<th style="text-align:center;border: 1px solid black;text-align:left;">Date</th>\n\t\t\t\t\t\t\t<th style="text-align:center;border: 1px solid black;width: 20%;">Matin</th>\n\t\t\t\t\t\t\t<th style="text-align:center;border: 1px solid black;width: 20%;">Apres Midi</th>\n\n\t\t\t\t\t\t</tr>\n\n\t\t\t\t\t\t\n\t\t\t\t\t</table>\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t<br />\n\t\t\t<br />\n\t\t\t<div>\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Evaluation </nav>\n\t\t\t\t<hr />\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:0.9rem">\n\n\t\t\t\t\tDate évaluation : 2022-12-27 <br />\n\t\t\t\t\tNote : 4 <br />\n\t\t\t\t\tEvaluation : <p>boff boff</p> <br />\n\n\n\n\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t<br />\n\n\t\t\t\n\n\n\n\t\t</div>\n\n\t</div>\n\t<hr />\n\t<div style="text-align: right;"> Date impression : 27/12/2022 </div>\n</body>\n\n</html>'
|
||||
dest = <_io.BufferedRandom name='./Emargement/fichier_presence.pdf'>
|
||||
path = None
|
||||
link_callback = None
|
||||
xhtml = False
|
||||
context_meta = None
|
||||
DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
|
||||
DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http')
|
||||
DEBUG:xhtml2pdf:Parsing img tag, src: <xhtml2pdf.files.pisaFileObject object at 0x00000220E74400D0>
|
||||
DEBUG:xhtml2pdf:Attrs: {'src': <xhtml2pdf.files.pisaFileObject object at 0x00000220E74400D0>, 'width': 60.0, 'height': None, 'align': None, 'id': None}
|
||||
DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib
|
||||
DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/3il/3il_img.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
|
||||
DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/3il/3il_img.png', params='', query='', fragment=''), 'https')
|
||||
DEBUG:xhtml2pdf:Parsing img tag, src: <xhtml2pdf.files.pisaFileObject object at 0x00000220F9AC0910>
|
||||
DEBUG:xhtml2pdf:Attrs: {'src': <xhtml2pdf.files.pisaFileObject object at 0x00000220F9AC0910>, 'width': 75.0, 'height': None, 'align': None, 'id': None}
|
||||
DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/3il/3il_img.png with httplib
|
||||
DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/3il/3il_img.png
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144
|
||||
DEBUG:xhtml2pdf:None
|
||||
DEBUG:xhtml2pdf:Col 1 has width 20%
|
||||
DEBUG:xhtml2pdf:Col 2 has width 20%
|
||||
DEBUG:xhtml2pdf:Col widths: [None, '20%', '20%']
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144
|
||||
DEBUG:xhtml2pdf:can't concat int to bytes
|
||||
Traceback (most recent call last):
|
||||
File "C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 432, in getTransparent
|
||||
return list(palette[transparency:transparency + 3])
|
||||
~~~~~~~~~~~~~^~~
|
||||
TypeError: can't concat int to bytes
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:19:07] "GET /myclass/api/PrintAttendeeDetail_perSession/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0105202305052023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:19:40.548123 : Security check : IP adresse '127.0.0.1' connected
|
||||
DEBUG:xhtml2pdf:pisaDocument options:
|
||||
src = '<!DOCTYPE html>\n<html>\n\n<body style=" width:290mm; margin-left: auto; margin-right: auto;border-style: double;margin-top: 2rem; padding:1rem;">\n\t<div style="padding-top:10px;text-align:left;width:30%; border: #454349;float: left;">\n\t\t<img src="http://88.170.110.220/img/MYSY-LOGO-BLUE.png" alt="Mysy Training Logo" width="80px" />\n\t</div>\n\n\t<div style="padding-top:10px;text-align:center;width:70%; border: #454349; float: center;">\n\t\t<h3> ATTESTION INDIVIDUELLE DE FORMATION </h3>\n\t</div>\n\n\n\t<hr />\n\t<div\n\t\tstyle="padding:0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.5rem;padding: 0px">\n\t\t<div style="width:100%">\n\t\t\t<div style="text-align:center;">\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Formation </nav>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:center;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem; line-height: 2rem;">\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPar la presente, l\'oganisme de formation au Numero de declaration\n\t\t\t\t\t\t <br />\n\t\t\t\t\t\tatteste que balde2 sekou2 a suivi la formation <br />\n\t\t\t\t\t<b>\t"" </b> <br />\n\t\t\t\t\t\trealisé par le formateur vince carter\n\t\t\t\t\t</p>\n\n\t\t\t\t\t<p>\n\t\t\t\t\t\tCette formation a eu lieu du 01/05/2023 24:00:00 au 05/05/2023 24:00:00 à l\'adresse\n\t\t\t\t\t\t:2 place de la republique\n\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem">\n\n\t\t\t\t\t<div style="width: 100%; margin-bottom: 5rem;">\n\t\t\t\t\t\tContenus de la formation : <br />\n\t\t\t\t\t\t\n\n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 30%; float: left;">\n\t\t\t\t\t\tFait à roissy en brie le \n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 70%; float: left;text-align: right;">\n\t\t\t\t\t\tPour l\'organisme de formation <br />\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t</div>\n\n\n\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t\n\n\n\t\t</div>\n\n\t</div>\n\t<hr />\n\t<div style="text-align: right;"> Date impression : </div>\n</body>\n\n</html>'
|
||||
dest = <_io.BufferedRandom name='./temp_directAttestation_.pdf'>
|
||||
path = None
|
||||
link_callback = None
|
||||
xhtml = False
|
||||
context_meta = None
|
||||
DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
|
||||
DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http')
|
||||
DEBUG:xhtml2pdf:Parsing img tag, src: <xhtml2pdf.files.pisaFileObject object at 0x00000220F9B74550>
|
||||
DEBUG:xhtml2pdf:Attrs: {'src': <xhtml2pdf.files.pisaFileObject object at 0x00000220F9B74550>, 'width': 60.0, 'height': None, 'align': None, 'id': None}
|
||||
DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib
|
||||
DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:19:40] "GET /myclass/api/PrintAttendeeCertification/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0105202305052023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:19:53.216975 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:19:54] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:20:32.632574 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:root:2022-12-27 11:20:33.104236 : SendAttendeeCertification Vous avez deja envoyé le certificat
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:20:33] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:20:40.301184 : Security check : IP adresse '127.0.0.1' connected
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:20:40] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 -
|
||||
INFO:root:2022-12-27 11:20:51.597530 : Security check : IP adresse '127.0.0.1' connected
|
||||
DEBUG:xhtml2pdf:pisaDocument options:
|
||||
src = '<!DOCTYPE html>\n<html>\n\n<body style=" width:290mm; margin-left: auto; margin-right: auto;border-style: double;margin-top: 2rem; padding:1rem;">\n\t<div style="padding-top:10px;text-align:left;width:30%; border: #454349;float: left;">\n\t\t<img src="http://88.170.110.220/img/MYSY-LOGO-BLUE.png" alt="Mysy Training Logo" width="80px" />\n\t</div>\n\n\t<div style="padding-top:10px;text-align:center;width:70%; border: #454349; float: center;">\n\t\t<h3> ATTESTION INDIVIDUELLE DE FORMATION </h3>\n\t</div>\n\n\n\t<hr />\n\t<div\n\t\tstyle="padding:0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.5rem;padding: 0px">\n\t\t<div style="width:100%">\n\t\t\t<div style="text-align:center;">\n\t\t\t\t<nav style="text-align:center;font-weight: bold;"> Formation </nav>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:center;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem; line-height: 2rem;">\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPar la presente, l\'oganisme de formation au Numero de declaration\n\t\t\t\t\t\t <br />\n\t\t\t\t\t\tatteste que balde2 sekou2 a suivi la formation <br />\n\t\t\t\t\t<b>\t"" </b> <br />\n\t\t\t\t\t\trealisé par le formateur vince carter\n\t\t\t\t\t</p>\n\n\t\t\t\t\t<p>\n\t\t\t\t\t\tCette formation a eu lieu du 01/05/2023 24:00:00 au 05/05/2023 24:00:00 à l\'adresse\n\t\t\t\t\t\t:2 place de la republique\n\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t\t<div\n\t\t\t\t\tstyle="padding:12px 0px;text-align:left;font-family:Georgia, \'Times New Roman\', Times, serif;color:#454349;font-size:1.2rem">\n\n\t\t\t\t\t<div style="width: 100%; margin-bottom: 5rem;">\n\t\t\t\t\t\tContenus de la formation : <br />\n\t\t\t\t\t\t\n\n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 30%; float: left;">\n\t\t\t\t\t\tFait à roissy en brie le \n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="width: 70%; float: left;text-align: right;">\n\t\t\t\t\t\tPour l\'organisme de formation <br />\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t</div>\n\n\n\n\t\t\t</div>\n\t\t\t<br />\n\t\t\t\n\n\n\t\t</div>\n\n\t</div>\n\t<hr />\n\t<div style="text-align: right;"> Date impression : </div>\n</body>\n\n</html>'
|
||||
dest = <_io.BufferedRandom name='./temp_directAttestation_.pdf'>
|
||||
path = None
|
||||
link_callback = None
|
||||
xhtml = False
|
||||
context_meta = None
|
||||
DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__'
|
||||
DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http')
|
||||
DEBUG:xhtml2pdf:Parsing img tag, src: <xhtml2pdf.files.pisaFileObject object at 0x00000220F99FA3D0>
|
||||
DEBUG:xhtml2pdf:Attrs: {'src': <xhtml2pdf.files.pisaFileObject object at 0x00000220F99FA3D0>, 'width': 60.0, 'height': None, 'align': None, 'id': None}
|
||||
DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib
|
||||
DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
|
||||
DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
|
||||
INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 11:20:51] "GET /myclass/api/PrintAttendeeCertification/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0105202305052023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 -
|
||||
|
|
|
@ -39,7 +39,7 @@ def Add_Update_SessionFormation(diction):
|
|||
# field_list.
|
||||
'''
|
||||
field_list = ['token', 'date_debut', 'date_fin', 'nb_participant', 'formation_session_id', 'adresse',
|
||||
'code_postal', 'ville',
|
||||
'code_postal', 'ville', 'formateur',
|
||||
'class_internal_url', 'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation_certif']
|
||||
incom_keys = diction.keys()
|
||||
for val in incom_keys:
|
||||
|
@ -135,6 +135,10 @@ def Add_Update_SessionFormation(diction):
|
|||
if diction['date_fin_inscription']:
|
||||
mydata['date_fin_inscription'] = diction['date_fin_inscription']
|
||||
|
||||
if ("formateur" in diction.keys()):
|
||||
if diction['formateur']:
|
||||
mydata['formateur'] = diction['formateur']
|
||||
|
||||
|
||||
mydata['date_update'] = str(datetime.now())
|
||||
mydata['valide'] = "1"
|
||||
|
@ -426,7 +430,7 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
|
|||
# Verification que les noms des colonne sont bien corrects"
|
||||
'''
|
||||
field_list = ['date_debut', 'date_fin', 'nb_participant', 'adresse', 'code_postal', 'ville',
|
||||
'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation']
|
||||
'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation', 'formateur']
|
||||
|
||||
# Controle du nombre de lignes dans le fichier.
|
||||
total_rows = len(df)
|
||||
|
@ -454,6 +458,8 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
|
|||
x = range(0, total_rows)
|
||||
for n in x:
|
||||
mydata = {}
|
||||
|
||||
|
||||
mydata['date_debut'] = str(df['date_debut'].values[n]).strip().split(" ")[0]
|
||||
mydata['date_fin'] = str(df['date_fin'].values[n]).strip().split(" ")[0]
|
||||
|
||||
|
@ -469,7 +475,14 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
|
|||
" est posterieure à la date de fin " + str(mydata['date_fin']) + " pour la ligne "+str(n)+" "
|
||||
|
||||
|
||||
local_nb_participants = str(df['nb_participant'].values[n]).strip()
|
||||
|
||||
|
||||
local_nb_participants = "0"
|
||||
if ("nb_participant" in df.keys()):
|
||||
if (str(df['nb_participant'].values[n])):
|
||||
local_nb_participants = str(df['nb_participant'].values[n]).strip()
|
||||
|
||||
|
||||
local_status, new_participants = mycommon.IsInt(local_nb_participants)
|
||||
if (local_status is False):
|
||||
mycommon.myprint(
|
||||
|
@ -478,12 +491,41 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None):
|
|||
|
||||
mydata['nb_participant'] = str(new_participants)
|
||||
|
||||
local_adresse = ""
|
||||
if ("adresse" in df.keys()):
|
||||
if (str(df['adresse'].values[n])):
|
||||
local_adresse = str(df['adresse'].values[n]).strip()
|
||||
mydata['adresse'] = local_adresse
|
||||
|
||||
mydata['adresse'] = str(df['adresse'].values[n]).strip()
|
||||
mydata['code_postal'] = str(df['code_postal'].values[n]).strip()
|
||||
mydata['ville'] = str(df['ville'].values[n]).strip()
|
||||
mydata['attestation_certif'] = str(df['attestation'].values[n]).strip()
|
||||
local_code_postal = ""
|
||||
if ("code_postal" in df.keys()):
|
||||
if (str(df['code_postal'].values[n])):
|
||||
local_code_postal = str(df['code_postal'].values[n]).strip()
|
||||
mydata['code_postal'] = local_code_postal
|
||||
|
||||
#mydata['code_postal'] = str(df['code_postal'].values[n]).strip()
|
||||
|
||||
local_ville = ""
|
||||
if ("ville" in df.keys()):
|
||||
if (str(df['ville'].values[n])):
|
||||
local_ville = str(df['ville'].values[n]).strip()
|
||||
mydata['ville'] = local_ville
|
||||
|
||||
#mydata['ville'] = str(df['ville'].values[n]).strip()
|
||||
|
||||
local_attestation_certif = ""
|
||||
if ("attestation" in df.keys()):
|
||||
if (str(df['attestation'].values[n])):
|
||||
local_attestation_certif = str(df['attestation'].values[n]).strip()
|
||||
mydata['attestation_certif'] = local_attestation_certif
|
||||
|
||||
#mydata['attestation_certif'] = str(df['attestation'].values[n]).strip()
|
||||
|
||||
local_formateur = ""
|
||||
if ("formateur" in df.keys()):
|
||||
if (str(df['formateur'].values[n])):
|
||||
local_formateur = str(df['formateur'].values[n]).strip()
|
||||
mydata['formateur'] = local_formateur
|
||||
|
||||
|
||||
local_session = str(df['session_status'].values[n]).strip()
|
||||
|
|
40
class_mgt.py
40
class_mgt.py
|
@ -278,7 +278,7 @@ def add_class(diction):
|
|||
|
||||
|
||||
if ("zone_diffusion" in diction.keys()):
|
||||
if diction['zone_diffusion'] and str(diction['zone_diffusion']) > 0:
|
||||
if diction['zone_diffusion'] and len(str(diction['zone_diffusion'])) > 0:
|
||||
tmp_str2 = str(diction['zone_diffusion']).lower().replace(",", ";").replace("\r\n", "")
|
||||
|
||||
if (not tmp_str2.endswith(";")):
|
||||
|
@ -334,7 +334,7 @@ def add_class(diction):
|
|||
mydata['datelieu'] = ""
|
||||
|
||||
if ("date_lieu" in diction.keys()):
|
||||
if diction['date_lieu'] and str(diction['date_lieu']) > 0 :
|
||||
if diction['date_lieu'] and len(str(diction['date_lieu'])) > 0 :
|
||||
tmp_str2 = str(diction['date_lieu']).lower().replace(",", ";").replace("\r\n", "")
|
||||
|
||||
print(" ### tmp_str2 = "+str(tmp_str2))
|
||||
|
@ -699,7 +699,7 @@ def update_class(diction):
|
|||
mydata['url'] = diction['url']
|
||||
|
||||
if ("duration" in diction.keys()):
|
||||
mydata['duration'] = float(str(diction['duration']))
|
||||
mydata['duration'] = mycommon.tryFloat(str(diction['duration']))
|
||||
|
||||
|
||||
if ("plus_produit" in diction.keys()):
|
||||
|
@ -2489,6 +2489,34 @@ def add_class_mass(file=None, Folder=None, diction=None):
|
|||
|
||||
for n in x:
|
||||
mydata = {}
|
||||
|
||||
if ("external_code" not in df.keys()):
|
||||
mycommon.myprint(str(
|
||||
inspect.stack()[0][
|
||||
3]) + " - Absence de 'external_code' pour la formation à la ligne "+str(n))
|
||||
return False, " Absence de 'external_code' pour la formation à la ligne "+str(n)
|
||||
|
||||
if ("title" not in df.keys()):
|
||||
mycommon.myprint(str(
|
||||
inspect.stack()[0][
|
||||
3]) + " - Absence de 'title' pour la formation à la ligne "+str(n))
|
||||
return False, " Absence de 'title' pour la formation à la ligne "+str(n)
|
||||
|
||||
|
||||
if ("domaine" not in df.keys()):
|
||||
mycommon.myprint(str(
|
||||
inspect.stack()[0][
|
||||
3]) + " - Absence de 'domaine' pour la formation à la ligne "+str(n))
|
||||
return False, " Absence de 'domaine' pour la formation à la ligne "+str(n)
|
||||
|
||||
|
||||
if ("domaine" not in df.keys()):
|
||||
mycommon.myprint(str(
|
||||
inspect.stack()[0][
|
||||
3]) + " - Absence de 'description' pour la formation à la ligne "+str(n))
|
||||
return False, " Absence de 'description' pour la formation à la ligne "+str(n)
|
||||
|
||||
|
||||
mydata['external_code'] = str(df['external_code'].values[n]).strip()
|
||||
mydata['title'] = str(df['titre'].values[n]).strip()
|
||||
mydata['domaine'] = str(df['domaine'].values[n]).strip()
|
||||
|
@ -2520,7 +2548,7 @@ def add_class_mass(file=None, Folder=None, diction=None):
|
|||
duration = "0"
|
||||
if ("duree" in df.keys()):
|
||||
if (str(df['duree'].values[n])):
|
||||
plus_produit = str(df['duree'].values[n]).strip()
|
||||
duration = str(df['duree'].values[n]).strip()
|
||||
mydata['duration'] = duration
|
||||
|
||||
|
||||
|
@ -2533,7 +2561,7 @@ def add_class_mass(file=None, Folder=None, diction=None):
|
|||
mots_cle = ""
|
||||
if ("mots_cle" in df.keys()):
|
||||
if (str(df['mots_cle'].values[n])):
|
||||
presentiel = str(df['mots_cle'].values[n]).strip()
|
||||
mots_cle = str(df['mots_cle'].values[n]).strip()
|
||||
mydata['mots_cle'] = mots_cle
|
||||
|
||||
|
||||
|
@ -2557,7 +2585,7 @@ def add_class_mass(file=None, Folder=None, diction=None):
|
|||
mydata['price'] = price
|
||||
|
||||
|
||||
metier = "1"
|
||||
metier = ""
|
||||
if ("metier" in df.keys()):
|
||||
if (str(df['metier'].values[n])):
|
||||
metier = str(df['metier'].values[n]).strip()
|
||||
|
|
|
@ -2517,7 +2517,10 @@ def GetAttendeeDetail_perSession(diction):
|
|||
my_retrun_dict['date_au'] = local_Insc_retval['date_au']
|
||||
my_retrun_dict['ville'] = local_Insc_retval['ville']
|
||||
my_retrun_dict['code_postal'] = local_Insc_retval['code_postal']
|
||||
my_retrun_dict['certification_send_date'] = str(local_Insc_retval['certification_send_date'])[0:10]
|
||||
|
||||
if ("certification_send_date" in local_Insc_retval.keys()):
|
||||
if (str(local_Insc_retval['certification_send_date'])):
|
||||
my_retrun_dict['certification_send_date'] = str(local_Insc_retval['certification_send_date'])[0:10]
|
||||
|
||||
|
||||
my_retrun_dict['adresse'] = local_Insc_retval['adresse']
|
||||
|
@ -2535,10 +2538,21 @@ def GetAttendeeDetail_perSession(diction):
|
|||
my_retrun_dict['price'] = local_Insc_retval['price']
|
||||
my_retrun_dict['inscription_validation_date'] = local_Insc_retval['inscription_validation_date']
|
||||
|
||||
my_retrun_dict['eval_eval'] = local_Insc_retval['eval_eval']
|
||||
my_retrun_dict['eval_note'] = local_Insc_retval['eval_note']
|
||||
my_retrun_dict['eval_pedagogie'] = local_Insc_retval['eval_pedagogie']
|
||||
my_retrun_dict['eval_date'] = str(local_Insc_retval['eval_date'])[0:10]
|
||||
if ("eval_eval" in local_Insc_retval.keys()):
|
||||
if (str(local_Insc_retval['eval_eval'])):
|
||||
my_retrun_dict['eval_eval'] = local_Insc_retval['eval_eval']
|
||||
|
||||
if ("eval_note" in local_Insc_retval.keys()):
|
||||
if (str(local_Insc_retval['eval_note'])):
|
||||
my_retrun_dict['eval_note'] = local_Insc_retval['eval_note']
|
||||
|
||||
if ("eval_pedagogie" in local_Insc_retval.keys()):
|
||||
if (str(local_Insc_retval['eval_pedagogie'])):
|
||||
my_retrun_dict['eval_pedagogie'] = local_Insc_retval['eval_pedagogie']
|
||||
|
||||
if ("eval_date" in local_Insc_retval.keys()):
|
||||
if (str(local_Insc_retval['eval_date'])):
|
||||
my_retrun_dict['eval_date'] = str(local_Insc_retval['eval_date'])[0:10]
|
||||
|
||||
|
||||
v = local_Insc_retval['_id'].generation_time
|
||||
|
|
Loading…
Reference in New Issue