You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building a networkx graph with objects based on custom class. The objects __str__ and __repr__ functions output only unique strings.
The error arises when I migrate networkx graph to pyvis.
import networkx as nx
from pyvis.network import Network
class Account:
def __init__(self, id):
self.id =id
def __str__(self) -> str:
return f"Account: {id}"
def __repr__(self) -> str:
return self.__str__()
g = nx.Graph()
g.add_node(Account(1))
g.add_node(Account(2))
g.add_node(Account(3))
g.add_node(Account(4))
net = Network(
directed=True,
select_menu=True,
filter_menu=True,
)
net.show_buttons()
net.from_nx(g)
net.toggle_physics(True)
net.show("test.html")
this gives an error
********************************
assert isinstance(n_id, str) or isinstance(n_id, int)
AssertionError
It feels like Network is artificially forced to take in only str or int as nodes while networkx can take objects.
The text was updated successfully, but these errors were encountered:
I am building a networkx graph with objects based on custom class. The objects
__str__
and__repr__
functions output only unique strings.The error arises when I migrate networkx graph to pyvis.
this gives an error
It feels like Network is artificially forced to take in only
str
orint
as nodes while networkx can take objects.The text was updated successfully, but these errors were encountered: