A Python network graph visualization library
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
pyvis-0.3.2-py3-none-any.whl
(756.0 kB
view details)
File details
Details for the file pyvis-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: pyvis-0.3.2-py3-none-any.whl
- Upload date:
- Size: 756.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.25.1 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5720c4ca8161dc5d9ab352015723abb7a8bb8fb443edeb07f7a322db34a97555 |
|
MD5 | 0e41512a3de629b6e2c0da2cf1a88977 |
|
BLAKE2b-256 | ab4be37e4e5d5ee1179694917b445768bdbfb084f5a59ecd38089d3413d4c70f |