We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
write_html
from pyvis.network import Network from itertools import combinations nodes = [n for n in range(10)] edges = list(combinations(nodes, 2)) nt = Network() nt.add_nodes(nodes) nt.add_edges(edges) # correctly writes file, but opens browser to relative path ./complete_graph.html, which is invalid nt.write_html("complete_graph.html")
python 3.12.1 ipython 8.21.0 ipykernel 6.29.2 jupyter_client 8.6.0 pyvis 0.3.1
additionally, write_html does not handle fully qualified paths at all
The text was updated successfully, but these errors were encountered:
fixes WestHealth#278
efe6f15
implements WestHealth#89
Successfully merging a pull request may close this issue.
additionally,
write_html
does not handle fully qualified paths at allThe text was updated successfully, but these errors were encountered: