Skip to main content

A Python wrapper for vis.js Network

Project description

pyvisjs: Python Wrapper for vis.js Network

pyvisjs is a Python package designed to provide seamless interaction with vis.js network visualizations, allowing users to manipulate and visualize network data using Python.

Workflow

  1. Create a network using python
  2. Apply standatd vis.js options such as colors, shapes or physics
  3. Apply pyvisjs specific options such as filtering or highlighting
  4. Show or generate html file
  5. Enjoy network interactions in your browser

Installation

You can install PyVisjs via pip:

pip install pyvisjs

Usage

from pyvisjs import Network

# Create a Network instance
net = Network()

# Add nodes and edges
net.add_node(1)
net.add_node(2)
net.add_edge(1, 2)

# Display the network
net.show("example.html")

For more examples and detailed usage, please refer to the documentation.

Contributing

Contributions are welcome! If you have suggestions, feature requests, or find any bugs, please open an issue or submit a pull request. Make sure to follow the contribution guidelines.

Acknowledgments

This project is inspired by the pyvis Python package and the visNetwork R-language package.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyvisjs-1.0.0b1.tar.gz (26.7 kB view hashes)

Uploaded Source

Built Distribution

pyvisjs-1.0.0b1-py3-none-any.whl (27.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page