Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,12 +4,12 @@ import os
|
|
| 4 |
# Function to show HTML content using an iframe
|
| 5 |
def show_html_in_iframe(page_idx):
|
| 6 |
# Construct the URL using the selected index
|
| 7 |
-
url = f'https://wmtis.s3.eu-west-1.amazonaws.com/
|
| 8 |
iframe_html = f'<iframe src="{url}" width="100%" height="1000"></iframe>'
|
| 9 |
return iframe_html
|
| 10 |
|
| 11 |
# Path to the directory containing HTML files
|
| 12 |
-
html_files_path = os.path.join("html_files", "
|
| 13 |
html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
|
| 14 |
|
| 15 |
with gr.Blocks() as demo:
|
|
|
|
| 4 |
# Function to show HTML content using an iframe
|
| 5 |
def show_html_in_iframe(page_idx):
|
| 6 |
# Construct the URL using the selected index
|
| 7 |
+
url = f'https://wmtis.s3.eu-west-1.amazonaws.com/test/{html_files[page_idx]}'
|
| 8 |
iframe_html = f'<iframe src="{url}" width="100%" height="1000"></iframe>'
|
| 9 |
return iframe_html
|
| 10 |
|
| 11 |
# Path to the directory containing HTML files
|
| 12 |
+
html_files_path = os.path.join("html_files", "test")
|
| 13 |
html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
|
| 14 |
|
| 15 |
with gr.Blocks() as demo:
|