networkx.project
networkx.bipartite_sets
Enter search terms or a module, class or function name.
Returns True if graph G is bipartite, False if not.
See also
bipartite_color
Examples
>>> G=nx.path_graph(4) >>> print nx.is_bipartite(G) True