networkx.algorithms.components.strongly_connected_component_subgraphs

strongly_connected_component_subgraphs(G, copy=True)[source]

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

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