Re: [Tutor] Graphically Display Binary Trees

2008-08-24 Thread Daniel Sarmiento
Thank you for your suggestions, I created a working prototype now, http://dpaste.com/73630/ Daniel > On Sat, Aug 23, 2008 at 4:08 PM, Kent Johnson <[EMAIL PROTECTED]> wrote: > Graphviz's dot is an amazing way to produce graphics from graph data. > pydot can produce the dot files needed to creat

Re: [Tutor] Graphically Display Binary Trees

2008-08-23 Thread Chris Fuller
Graphviz (http://www.graphviz.org/) is great for this sort of thing, but it's an external program. There is a Python interface, pydot (http://dkbza.org/pydot.html) Cheers On Saturday 23 August 2008 15:34, Daniel Sarmiento wrote: > Hi > > I am working on a red-black binary tree class. I would

[Tutor] Graphically Display Binary Trees

2008-08-23 Thread Daniel Sarmiento
Hi I am working on a red-black binary tree class. I would like to print it in a nice, graphical way. I have never done any GUI programming, or generated any graphics in python, before. What libraries would you use, what's the most straight forward way to achieve what I want? Thank you. _