How to find path between two nodes & to visualize them

Find a path between two nodes - YouTube . i love this concept & i want to do on my own. I am new to python and before some days started to use django,pyvis,networkx and learning. now with help of pyvis and networkx how to find path between two nodes, and how to visualize them. which search algorithm i have to use? bfs or any other . Need Suggestions .Thank you.

Look at https://pypi.org/ for packages. A key seardh term for graph shortest path is ‘A*’ (A star). I would expect any graph package to have something.

1 Like

Thank you. I will check it out.