Spaces:
Running
Running
Commit
·
d7207c4
1
Parent(s):
a73442f
Add application files
Browse files
app.py
CHANGED
@@ -72,13 +72,40 @@ def greet(name1, name2):
|
|
72 |
df_pred = pd.DataFrame(key_value_pairs, columns = ["Ontology Attribute", "Value"]).iloc[:19,:]
|
73 |
|
74 |
html_output = df_pred.to_html()
|
75 |
-
|
76 |
|
77 |
# Save the CSV data to a temporary file
|
78 |
with tempfile.NamedTemporaryFile(delete=False, suffix=".csv") as temp_file:
|
79 |
df_pred.to_csv(temp_file.name, index=False)
|
80 |
csv_output = temp_file.name
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
return html_output, csv_output
|
83 |
# return df_pred.to_html()
|
84 |
|
|
|
72 |
df_pred = pd.DataFrame(key_value_pairs, columns = ["Ontology Attribute", "Value"]).iloc[:19,:]
|
73 |
|
74 |
html_output = df_pred.to_html()
|
|
|
75 |
|
76 |
# Save the CSV data to a temporary file
|
77 |
with tempfile.NamedTemporaryFile(delete=False, suffix=".csv") as temp_file:
|
78 |
df_pred.to_csv(temp_file.name, index=False)
|
79 |
csv_output = temp_file.name
|
80 |
+
|
81 |
+
# Create a button to toggle table view and a script to handle the button click
|
82 |
+
show_more_button = """
|
83 |
+
<button onclick="toggleTableView()">Show More</button>
|
84 |
+
<script>
|
85 |
+
var isFullTableShown = false;
|
86 |
+
function toggleTableView() {
|
87 |
+
var table = document.getElementById('output-table');
|
88 |
+
var rows = table.getElementsByTagName('tr');
|
89 |
+
for (var i = 16; i < rows.length; i++) {
|
90 |
+
if (isFullTableShown) {
|
91 |
+
rows[i].style.display = 'none';
|
92 |
+
} else {
|
93 |
+
rows[i].style.display = '';
|
94 |
+
}
|
95 |
+
}
|
96 |
+
isFullTableShown = !isFullTableShown;
|
97 |
+
document.querySelector('button').textContent = isFullTableShown ? 'Show Less' : 'Show More';
|
98 |
+
}
|
99 |
+
</script>
|
100 |
+
"""
|
101 |
+
|
102 |
+
# Add an id to the HTML table for reference in the JavaScript function
|
103 |
+
html_output = html_output.replace("<table ", "<table id='output-table' ")
|
104 |
+
|
105 |
+
# Combine the HTML table and the Show More button
|
106 |
+
html_output += show_more_button
|
107 |
+
|
108 |
+
|
109 |
return html_output, csv_output
|
110 |
# return df_pred.to_html()
|
111 |
|