WestHealth / pyvis

Python package for creating and visualizing interactive network graphs.
http://pyvis.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
984 stars 165 forks source link

Adds multi-edge on multi undirected graphs. #273

Open ceandrade opened 7 months ago

ceandrade commented 7 months ago

As VisJS allows us to have multiple edges between the same pairs of nodes on multi undirected graphs, here we add such capability. Indeed, the changes in the code are trivial by commenting out / removing the code that checks and prevents the addition of multiple edges on undirected graphs. We also fixed/commented out the respective tests for such capability since it is disabled now.

However, no deep analysis was done to see the impact in other parts of the code.