Re: Drawing Multigraphs

2010-06-02 Thread Richard Brodie
"geremy condra" wrote in message news:mailman.825.1275414239.32709.python-l...@python.org... > On Tue, Jun 1, 2010 at 9:42 AM, Nima wrote: >> Hi there, >> Is it possible to draw an (undirected) multigraph using a python library? >> I need to write a program that finds an Eulerian circuit in a

Re: Drawing Multigraphs

2010-06-01 Thread geremy condra
On Tue, Jun 1, 2010 at 11:24 AM, Nima wrote: > 2010/6/1 geremy condra >> >> We use Dot in Graphine, and it works well. It's also very easy to >> output to. > > >> Graphine is a flexible, easy-to-use graph library for Python 3. > > I always knew a day would come when I'd need to use Python 3. And

Re: Drawing Multigraphs

2010-06-01 Thread Nima
2010/6/1 geremy condra > > We use Dot in Graphine, and it works well. It's also very easy to > output to. > Graphine is a flexible, easy-to-use graph library for Python 3. I always knew a day would come when I'd need to use Python 3. And I've been so stupid thinking I could run away from this e

Re: Drawing Multigraphs

2010-06-01 Thread geremy condra
On Tue, Jun 1, 2010 at 9:42 AM, Nima wrote: > Hi there, > Is it possible to draw an (undirected) multigraph using a python library? > I need to write a program that finds an Eulerian circuit in a graph > (which might obviously be a multigraph). As the output of the program, > I should draw the gra

Drawing Multigraphs

2010-06-01 Thread Nima
Hi there, Is it possible to draw an (undirected) multigraph using a python library? I need to write a program that finds an Eulerian circuit in a graph (which might obviously be a multigraph). As the output of the program, I should draw the graph and print out the solution. I asked my question at