from graphy import plotting
import networkx as nx
G=nx.karate_club_graph()
plotting.plot_graph(G, pos=nx.spring_layout(G), colors=range(G.number_of_nodes())) # doctest: +SKIP
