robertselvam commited on
Commit
c6a6642
1 Parent(s): d5a07b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -4,7 +4,7 @@ import PyPDF2
4
  import gradio as gr
5
  import docx
6
  import re
7
- import plotly.graph_objects as go
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
- file_output = gr.File(elem_classes="filenameshow")
179
- upload_button = gr.UploadButton(
180
  "Browse File",file_types=[".txt", ".pdf", ".doc", ".docx",".json",".csv"],
181
  elem_classes="filenameshow")
182
  with gr.TabItem("Designation"):
183
- btn = gr.Button(value="Submit")
184
- output_text = gr.Textbox(label="Designation List")
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