networkx.algorithms.components.attracting_component_subgraphs

attracting_component_subgraphs(G, copy=True)[source]

DEPRECATED: Use (G.subgraph(c) for c in attracting_components(G))

Or (G.subgraph(c).copy() for c in attracting_components(G))