<span class="gmail_quote"></span>Hi all. <br>I use pydot for drawing nework link.<br>the code is at bottom of mail.<br>i have a png like this attached<br>If you look png you can see that <a href="http://10.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.1</a> and <a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.2</a> are linked by 2 arrow, one from 1 to 2, one form 2 to 1. <br>Is possible to draw only one line with both arrow?<br>I would have a result like in route2.png but i don't know how!!!<br>Help me!!!<br><span style="font-family: courier new,monospace;">

<br>#---------------------------------------<br>#code<br>#---------------------------------------<br>import pydot</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">

edges=[(&quot;<a href="http://10.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.1</a>&quot;,&quot;<a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.2</a>&quot;), (&quot;<a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.2</a>&quot;,&quot;<a href="http://10.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.1</a>&quot;),(&quot;
<a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.2</a>&quot;,&quot;<a href="http://10.0.0.7" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.7
</a>&quot;),(&quot;<a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.2</a>&quot;,&quot;<a href="http://10.0.0.9" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.9</a>&quot;),(&quot;<a href="http://10.0.0.2" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.2</a>&quot;,&quot;<a href="http://10.0.0.6" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.6</a>&quot;),(&quot;<a href="http://10.0.0.9" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.9</a>&quot;,&quot;<a href="http://10.0.0.8" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.8</a>&quot;),(&quot;<a href="http://10.0.0.6" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
10.0.0.6</a>&quot;,&quot;
<a href="http://10.0.0.7" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">10.0.0.7</a>&quot;) ]</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
g=pydot.graph_from_edges(edges,directed=True)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">g.write_png('route.png')</span><span class="sg"></span><br clear="all"><br clear="all"><br>-- <br>Sbaush