Spaces:
Sleeping
Sleeping
robertselvam
commited on
Commit
•
c6a6642
1
Parent(s):
d5a07b7
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import PyPDF2
|
|
4 |
import gradio as gr
|
5 |
import docx
|
6 |
import re
|
7 |
-
|
8 |
|
9 |
class Resume_Overall:
|
10 |
def __init__(self):
|
@@ -175,13 +175,13 @@ class Resume_Overall:
|
|
175 |
with gr.Row():
|
176 |
with gr.Column(elem_id="col-container"):
|
177 |
gr.HTML("""<center><h1>Resume</h1></center>""")
|
178 |
-
|
179 |
-
|
180 |
"Browse File",file_types=[".txt", ".pdf", ".doc", ".docx",".json",".csv"],
|
181 |
elem_classes="filenameshow")
|
182 |
with gr.TabItem("Designation"):
|
183 |
-
|
184 |
-
|
185 |
|
186 |
app.launch(debug=True)
|
187 |
|
|
|
4 |
import gradio as gr
|
5 |
import docx
|
6 |
import re
|
7 |
+
|
8 |
|
9 |
class Resume_Overall:
|
10 |
def __init__(self):
|
|
|
175 |
with gr.Row():
|
176 |
with gr.Column(elem_id="col-container"):
|
177 |
gr.HTML("""<center><h1>Resume</h1></center>""")
|
178 |
+
file_output1 = gr.File(elem_classes="filenameshow")
|
179 |
+
upload_button1 = gr.UploadButton(
|
180 |
"Browse File",file_types=[".txt", ".pdf", ".doc", ".docx",".json",".csv"],
|
181 |
elem_classes="filenameshow")
|
182 |
with gr.TabItem("Designation"):
|
183 |
+
btn1 = gr.Button(value="Submit")
|
184 |
+
output_text1 = gr.Textbox(label="Designation List")
|
185 |
|
186 |
app.launch(debug=True)
|
187 |
|