#

Note

This documents the development version of NetworkX. Documentation for the current release can be found here.

#

networkx.classes.function.all_neighbors

all_neighbors(graph, node)[source]

Returns all of the neighbors of a node in the graph.

If the graph is directed returns predecessors as well as successors.

Parameters
  • graph (NetworkX graph) – Graph to find neighbors.

  • node (node) – The node whose neighbors will be returned.

Returns

neighbors – Iterator of neighbors

Return type

iterator