Metadata-Version: 2.1
Name: pyvis-network
Version: 0.0.3
Summary: Interactive Network Visualizations
Home-page: https://github.com/daniel-yj-yang/pyvis-network
Author: Daniel Yang
Author-email: daniel.yj.yang@gmail.com
License: BSD-3-Clause License
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE

.. -*- mode: rst -*-

|BuildTest|_ |PyPi|_ |License|_ |Downloads|_ |PythonVersion|_

.. |BuildTest| image:: https://travis-ci.com/daniel-yj-yang/pyvis-network.svg?branch=main
.. _BuildTest: https://app.travis-ci.com/github/daniel-yj-yang/pyvis-network

.. |PythonVersion| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue
.. _PythonVersion: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue

.. |PyPi| image:: https://img.shields.io/pypi/v/pyvis-network
.. _PyPi: https://pypi.python.org/pypi/pyvis-network

.. |Downloads| image:: https://pepy.tech/badge/pyvis-network
.. _Downloads: https://pepy.tech/project/pyvis-network

.. |License| image:: https://img.shields.io/pypi/l/pyvis-network
.. _License: https://pypi.python.org/pypi/pyvis-network


===================================
Interactive Network Visualizations
===================================

This tool leverages the amazing vis-network library (https://visjs.github.io/vis-network/docs/network/) to provide interactive visualizations.


Installation
------------

.. code-block::

   pip install pyvis-network


Sample Usage
------------

>>> from pyvis_network import network, dataset
>>> nodes_df, edges_df = dataset().load_as_df("Example1")
>>> network(title="Example1").add_df(nodes_df=nodes_df,edges_df=edges_df).show("output.html")


Sample Screenshot
-----------------
Example1

|image1|


.. |image1| image:: https://github.com/daniel-yj-yang/pyvis-network/raw/main/pyvis_network/examples/images/Example1.png



