Forked from: pyvis. With the aim of being able to run Pyvis without reaching out to external sites.
offline-pyvis is built around visjs, a JavaScript visualization library.
Pyvis' full documentation can be found at http://pyvis.readthedocs.io/en/latest/
python setup.py install
The most basic use case of a pyvis instance is to create a Network object and invoke methods:
from offline_pyvis.network import Network
g = Network()
g.add_node(0)
g.add_node(1)
g.add_edge(0, 1)
g.show("basic.html")
- Remove options for remote content