Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,11 @@ example_files = ['#TaxDirection (Responses)_BasicExample.xlsx',
|
|
101 |
]
|
102 |
|
103 |
|
104 |
-
|
|
|
|
|
|
|
|
|
105 |
# Define the Gradio interface
|
106 |
interface = gr.Interface(
|
107 |
fn=process_excel, # The function to process the uploaded file
|
@@ -121,7 +125,8 @@ interface = gr.Interface(
|
|
121 |
"<span style='color: blue;'>Upload Excel file containing #TaxDirections</span> "
|
122 |
|
123 |
# "<span style='color: brown; font-size: 35px;'>→ </span>"
|
124 |
-
"<span style='color: brown; font-size: 35px;'>⇒ &
|
|
|
125 |
|
126 |
"<span style='color: green;'>Download HyperLocal Project Proposals</span>"
|
127 |
"</p>\n"
|
|
|
101 |
]
|
102 |
|
103 |
|
104 |
+
import random
|
105 |
+
a_random_object = random.choice(["⇒", "↣", "↠", "→"])
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
# Define the Gradio interface
|
110 |
interface = gr.Interface(
|
111 |
fn=process_excel, # The function to process the uploaded file
|
|
|
125 |
"<span style='color: blue;'>Upload Excel file containing #TaxDirections</span> "
|
126 |
|
127 |
# "<span style='color: brown; font-size: 35px;'>→ </span>"
|
128 |
+
# "<span style='color: brown; font-size: 35px;'>⇒ ↣ ↠ </span>"
|
129 |
+
"<span style='color: brown; font-size: 35px;'> " +a_random_object +" </span>"
|
130 |
|
131 |
"<span style='color: green;'>Download HyperLocal Project Proposals</span>"
|
132 |
"</p>\n"
|