Metadata-Version: 2.1
Name: networkx-viewer
Version: 0.3.1
Summary: Interactive viewer for networkx graphs.
Home-page: http://github.com/jsexauer/networkx_viewer
Author: Jason Sexauer
Author-email: genericcarbonlifeform@gmail.com
License: LICENSE.txt
Keywords: networkx,topology,graph theory
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Requires-Python: >3.5
License-File: LICENSE.txt
Requires-Dist: networkx (>=2.2)


NetworkX Viewer provides a basic interactive GUI to view
`networkx <https://networkx.github.io/>`_ graphs.  In addition to standard
plotting and layout features as found natively in networkx, the GUI allows
you to:

  - Drag nodes around to tune the default layout
  - Show and hide nodes
  - Filter nodes
  - Pan and zoom
  - Display nodes only within a certain number of hops ("levels") of
    a "home node"
  - Display and highlight the shortest path between two nodes.  Nodes
    around the path can also be displayed within a settable number of
    levels
  - Intelligently find and display nodes near displayed nodes using
    "Grow" and "Grow Until" functions
  - Use attributes stored in the graph's node and edge dictionaries to
    customize the appearance of the node and edge tokens in the GUI
  - Mark nodes and edges for reference
  - Support for both `nx.Graph` and `nx.MultiGraph`

See https://github.com/jsexauer/networkx_viewer for more details


