Introduction Python Graphviz Exemples de graphes simples
graph graphname {
rankdir=LR; //Rank Direction Left to Right
a -- b;
b -- c;
b -- d;
d -- a;
}
Happy Hare