@gduchaussois not sure I understand what you want... Djikstra gives you one (the shortest) path but you want all the paths (there can be an infinite number of paths if you don’t restrict your rules)?
@immae even if I can get one then another it's fine. The goal is to eliminate dependencies in terraform module using the dot file generated by terraform --graph
@immae I never managed to make it read y dot file, but I converted to gml using gv2gml and piping through sed -e 's/\["/[/' -e 's/"\]/]/' I managed t import it with networkx and use all_simple_paths algorithm. Thanks a lot
@gduchaussois ah cool
@immae looks great, thanks a lot