Skip to content

HarryRudolph/offline-pyvis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

221 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

offline-pyvis - a Python library for visualizing networks without internet connection

Forked from: pyvis. With the aim of being able to run Pyvis without reaching out to external sites.

Description

offline-pyvis is built around visjs, a JavaScript visualization library.

Documentation

Pyvis' full documentation can be found at http://pyvis.readthedocs.io/en/latest/

Installation

python setup.py install

Dependencies

networkx

jinja2

ipython

jsonpickle

Quick Start

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")

TODO

  • Remove options for remote content

About

Version of Pyvis suitable for use without pulling files from the internet.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • HTML 83.6%
  • Python 14.9%
  • JavaScript 1.2%
  • Jupyter Notebook 0.3%