Spaces:
Sleeping
Sleeping
LaurentTRIPIED
commited on
Commit
•
82ac12d
1
Parent(s):
70c8b42
Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,13 @@ if st.button('Extraire le texte du PDF et sauvegarder en JSON'):
|
|
48 |
save_text_to_json(pdf_text, json_output_path)
|
49 |
st.success("Le texte a été extrait et sauvegardé.")
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
# Bouton pour afficher le contenu du fichier JSON
|
52 |
if st.button('Afficher le contenu JSON'):
|
53 |
display_json_contents(json_output_path)
|
@@ -63,9 +70,3 @@ try:
|
|
63 |
)
|
64 |
except FileNotFoundError:
|
65 |
st.error(f"Le fichier {json_output_path} n'est pas disponible pour téléchargement.")
|
66 |
-
|
67 |
-
# Vérifier si le fichier existe dans le répertoire data/
|
68 |
-
if os.path.exists(json_output_path):
|
69 |
-
st.success(f"Le fichier {json_output_path} existe dans le répertoire data.")
|
70 |
-
else:
|
71 |
-
st.error(f"Le fichier {json_output_path} n'existe pas dans le répertoire data.")
|
|
|
48 |
save_text_to_json(pdf_text, json_output_path)
|
49 |
st.success("Le texte a été extrait et sauvegardé.")
|
50 |
|
51 |
+
# Vérification de l'existence du fichier JSON et affichage du chemin absolu
|
52 |
+
if os.path.exists(json_output_path):
|
53 |
+
st.success(f"Le fichier {json_output_path} existe bien dans le répertoire data.")
|
54 |
+
st.write(f"Chemin absolu du fichier JSON : {os.path.abspath(json_output_path)}")
|
55 |
+
else:
|
56 |
+
st.error(f"Le fichier {json_output_path} n'a pas été trouvé dans le répertoire data.")
|
57 |
+
|
58 |
# Bouton pour afficher le contenu du fichier JSON
|
59 |
if st.button('Afficher le contenu JSON'):
|
60 |
display_json_contents(json_output_path)
|
|
|
70 |
)
|
71 |
except FileNotFoundError:
|
72 |
st.error(f"Le fichier {json_output_path} n'est pas disponible pour téléchargement.")
|
|
|
|
|
|
|
|
|
|
|
|