A Python network graph visualization library
Project Links
Meta
Author: Jose Unpingco
Requires Python: >3.6
Classifiers
Pyvis - a Python library for visualizing networks
Description
Pyvis is built around visjs, a JavaScript visualization library.
Documentation
Pyvis' full documentation can be found at http://pyvis.readthedocs.io/en/latest/
Installation
You can install pyvis through pip:
pip install pyvis
Or if you have an archive of the project simply run the following from the top level directory:
python setup.py install
Dependencies
Test Dependencies
Quick Start
The most basic use case of a pyvis instance is to create a Network object and invoke methods:
from pyvis.network import Network
g = Network()
g.add_node(0)
g.add_node(1)
g.add_edge(0, 1)
g.show("basic.html")
Interactive Notebook playground with examples
Feb 24, 2023
0.3.2
Nov 11, 2022
0.3.1
Sep 23, 2022
0.3.0
May 09, 2022
0.2.1
Apr 14, 2022
0.2.0
Mar 02, 2021
0.1.9
Aug 03, 2020
0.1.8.2
Jun 29, 2020
0.1.8.1.1
Jun 29, 2020
0.1.8.1
Jun 04, 2020
0.1.8.0
Jul 26, 2019
0.1.7.0
Mar 12, 2019
0.1.6.0
Mar 07, 2019
0.1.5.1
Dec 06, 2018
0.1.5.0
Jun 26, 2018
0.1.4.1
May 24, 2018
0.1.4
May 15, 2018
0.1.3.1
May 15, 2018
0.1.3
May 15, 2018
0.1.2.2
May 15, 2018
0.1.2.1
May 15, 2018
0.1.2
May 15, 2018
0.1.1
Wheel compatibility matrix
Files in release
Extras:
None
Dependencies:
(>=5.3.0)
ipython
(>=2.9.6)
jinja2
(>=1.4.1)
jsonpickle
(>=1.11)
networkx