KIMOSSINO commited on
Commit
ae68a31
·
verified ·
1 Parent(s): 5896011

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -42,10 +42,23 @@ def extract_titles_and_hashtags(file):
42
 
43
 
44
  # إنشاء واجهة Gradio
 
 
45
  def gradio_interface():
46
  with gr.Blocks() as demo:
47
  gr.Markdown("## 📝 محلل النصوص المتقدم")
48
-
 
 
 
 
 
 
 
 
 
 
 
49
  with gr.Row():
50
  file_input = gr.File(label="📂 رفع ملف TXT", file_types=[".txt"])
51
 
 
42
 
43
 
44
  # إنشاء واجهة Gradio
45
+
46
+
47
  def gradio_interface():
48
  with gr.Blocks() as demo:
49
  gr.Markdown("## 📝 محلل النصوص المتقدم")
50
+
51
+ gr.Markdown(
52
+ """
53
+ ### تثبيت المكتبات الضرورية
54
+ انسخ الكود التالي لتثبيت المكتبات المطلوبة:
55
+
56
+ ```
57
+ pip install gradio beautifulsoup4 pandas
58
+ ```
59
+ """
60
+ )
61
+
62
  with gr.Row():
63
  file_input = gr.File(label="📂 رفع ملف TXT", file_types=[".txt"])
64