geronimo-pericoli
commited on
Commit
•
83be3a6
1
Parent(s):
075c9fb
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ def draw_graph():
|
|
42 |
# Crear un grafo con opciones visuales básicas
|
43 |
net = Network(
|
44 |
notebook=True,
|
45 |
-
height="
|
46 |
width="100%",
|
47 |
select_menu=True,
|
48 |
neighborhood_highlight=True,
|
@@ -58,10 +58,7 @@ def draw_graph():
|
|
58 |
net.add_edge(source, target, title=relation, label=relation, color="black")
|
59 |
|
60 |
# Generar el HTML como string
|
61 |
-
|
62 |
-
net.write_html(html_output)
|
63 |
-
html_output.seek(0)
|
64 |
-
html_contenido = html_output.getvalue()
|
65 |
|
66 |
# Generar el iframe embebido
|
67 |
return generar_iframe_embebido(html_contenido)
|
@@ -72,7 +69,7 @@ def generar_iframe_embebido(html_contenido):
|
|
72 |
|
73 |
# Generar el string del iframe con el contenido embebido
|
74 |
iframe = f"""
|
75 |
-
<iframe srcdoc="{html_escapado}" width="100%" height="
|
76 |
"""
|
77 |
return iframe
|
78 |
##### Graph end ##########
|
|
|
42 |
# Crear un grafo con opciones visuales básicas
|
43 |
net = Network(
|
44 |
notebook=True,
|
45 |
+
height="760px",
|
46 |
width="100%",
|
47 |
select_menu=True,
|
48 |
neighborhood_highlight=True,
|
|
|
58 |
net.add_edge(source, target, title=relation, label=relation, color="black")
|
59 |
|
60 |
# Generar el HTML como string
|
61 |
+
html_contenido = net.generate_html()
|
|
|
|
|
|
|
62 |
|
63 |
# Generar el iframe embebido
|
64 |
return generar_iframe_embebido(html_contenido)
|
|
|
69 |
|
70 |
# Generar el string del iframe con el contenido embebido
|
71 |
iframe = f"""
|
72 |
+
<iframe srcdoc="{html_escapado}" width="100%" height="800px" style="border:none;"></iframe>
|
73 |
"""
|
74 |
return iframe
|
75 |
##### Graph end ##########
|