Re: GUI and graph

2005-12-23 Thread questions?
Thanks all you guys for the help.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI and graph

2005-12-23 Thread bearophileHUGS
Maybe this graph library can be useful to you:
http://sourceforge.net/projects/pynetwork/

Bye,
bearophile

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI and graph

2005-12-23 Thread Fabrizio Milo
> pydot is pretty amazing in its abilitity to make nice, readable renderings of 
> graph data.
> http://dkbza.org/pydot.html

Well It's thanks to graphwiz..

http://www.research.att.com/sw/tools/graphviz/

I suggest to read the DOT language specification ( it is really easy )
and to roll up your own python script to build your dot file.

Fabrizio Milo aka Misto
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI and graph

2005-12-22 Thread Kent Johnson
questions? wrote:
> I have a graph with different parameters along different parts of the
> graph.
> 
> I want to have a program that can display the graph with coloring for
> different part of the graph. Is this possible in Python? What should I
> read?

pydot is pretty amazing in its abilitity to make nice, readable renderings of 
graph data.
http://dkbza.org/pydot.html

Kent
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI and graph

2005-12-22 Thread Avell Diroll
questions? wrote:
> I have a graph with different parameters along different parts of the
> graph.
> 
> I want to have a program that can display the graph with coloring for
> different part of the graph. Is this possible in Python? What should I
> read?
> 
> Thanks for any comments
> 

I would suggest a combination of pyGTK and Matplotlib.
A quick tutorial may be found here : http://www.serpia.org/pygtk

Thinking about it, you might be satisfied with the gnuplot interface for 
python : http://gnuplot-py.sourceforge.net/

Hope that helped ...
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI and graph

2005-12-22 Thread mneyer
Look up the information on graphical displays in Tk for python.
http://www.pythonware.com/library/tkinter/introduction/

-- 
http://mail.python.org/mailman/listinfo/python-list


GUI and graph

2005-12-22 Thread questions?
I have a graph with different parameters along different parts of the
graph.

I want to have a program that can display the graph with coloring for
different part of the graph. Is this possible in Python? What should I
read?

Thanks for any comments

-- 
http://mail.python.org/mailman/listinfo/python-list