Consider this code:
G = nx.DiGraph()
H=nx.path_graph(counter+1)
G.add_nodes_from(H)
labels = dict([ x for x in enumerate(idvalue) ])
l =len(idvalue)
labels[l]=userid
for node in H:
G.add_edge(node,l)
pos=nx.spring_layout(G)
nx.draw(G, pos=pos, node_color='g', node_size=20, with_labels=False)
nx.draw_networkx_labels(G,pos,labels,font_size=16)
plt.show()
Here, I'm extracting userid
& idvalue
from a URL using beautiful soup and these two values change as I iterate over a set of URLs. How to maintain one graph and add nodes as and when I extract content?
Please help. Thanks in advance.
you're already using
add_edge()
which adds the nodes as well if they don't exist.if you want to add just a node with no edges attached you can use
add_node()