This Python script provides a streamlined implementation of Dijkstra's Algorithm for finding the shortest paths in a graph. The algorithm uses a priority queue to explore nodes efficiently, and the process is visualized step-by-step using Matplotlib and NetworkX. The visualization highlights the current shortest paths as the algorithm progresses, making it easy to understand how the shortest path is determined from the starting node to all other nodes in the graph.