rameshmoorthy
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -41,11 +41,11 @@ with gr.Blocks() as cluster:
|
|
41 |
with gr.Row():
|
42 |
|
43 |
|
44 |
-
gr.HTML(
|
45 |
out1=gr.File(label="Download CSV")
|
46 |
-
gr.HTML(
|
47 |
out2=gr.File(label="Download CSV")
|
48 |
-
gr.HTML(
|
49 |
out3=gr.File(label="Download CSV")
|
50 |
btn.click(generate_report,inputs=[file,type],outputs=[out1,out3])
|
51 |
cluster.launch()
|
|
|
41 |
with gr.Row():
|
42 |
|
43 |
|
44 |
+
gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">PANDAS REPORT</h1>""")
|
45 |
out1=gr.File(label="Download CSV")
|
46 |
+
gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">DATAPREP REPORT</h1>""")
|
47 |
out2=gr.File(label="Download CSV")
|
48 |
+
gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h1>""")
|
49 |
out3=gr.File(label="Download CSV")
|
50 |
btn.click(generate_report,inputs=[file,type],outputs=[out1,out3])
|
51 |
cluster.launch()
|