Metadata-Version: 2.0
Name: nxquickplot
Version: 0.0.2
Summary: Convenience package for drawing NetworkX graphs
Home-page: https://github.com/amoe/nxquickplot
Author: David Banks
Author-email: amoebae@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent

# nxquickplot

Convenient plotting for graphs in NetworkX.

## API

### Draw the graph with a force-directed layout

    import quickplot from nxquickplot
    import networkx

    g = networkx.DiGraph()

    g.add_node('Alice')
    g.add_node('Bob')
    g.add_edge('Alice', 'Bob')

    qp(g)


