I want to create a graph of largest strongly connected component of a directed graph. Networkx has a function (components.strongly_connected_components) that can extract a largest strongly connected component, but it only returns a generator of sets of nodes. But this doesn't contain the connection between nodes.
Is there any function that can create a directed graph of largest strongly connected component?