
- pyvisjs
Python wrapper for vis.js Network
:warning: Beta version disclaimer Please note that this package is in a beta version and backwards-incompatible changes might be introduced in future releases.
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.
Usage workflow
- Create a network using python
- Apply standard vis.js options such as colors, shapes or physics
- Apply pyvisjs specific options such as node/edge filtering or highlighting
- Show or generate html file
- Enjoy network interactions in your browser
Installation
You can install PyVisjs via pip:
pip install pyvisjs
Usage example
from pyvisjs import Network
net = Network()
net.add_node(1)
net.add_node(2)
net.add_edge(1, 2)
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.