Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-23 Thread paron
Steve Holden wrote: Debashis Dey wrote: Hello, I have a python CGI program. I would like to show a graph within a HTML plage. I would like to dynamically generate the graph using the python CGI script on the web server side and send it to the browser. My question is how can I do

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-23 Thread Christophe
Steve Holden a écrit : Debashis Dey wrote: Hello, I have a python CGI program. I would like to show a graph within a HTML plage. I would like to dynamically generate the graph using the python CGI script on the web server side and send it to the browser. My question is how can I do

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-22 Thread Christoph Zwerschke
Xavier Morel wrote: Well, some people have been crazy enough lately to generate more or less imageless bar graphs though, see Eric Meyer's Bar Graphs with Style (http://meyerweb.com/eric/thoughts/2005/12/20/bar-graphs-with-style/) for more informations on the subject

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-21 Thread Fuzzyman
Steve Holden wrote: Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-21 Thread Fuzzyman
Steve Holden wrote: Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-21 Thread John M. Gabriele
Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich saves some processing and

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Steve Holden
Debashis Dey wrote: Hello, I have a python CGI program. I would like to show a graph within a HTML plage. I would like to dynamically generate the graph using the python CGI script on the web server side and send it to the browser. My question is how can I do this in python? Is there

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Xavier Morel
Steve Holden wrote: Debashis Dey wrote: Hello, I have a python CGI program. I would like to show a graph within a HTML plage. I would like to dynamically generate the graph using the python CGI script on the web server side and send it to the browser. My question is how can I do this

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Luiz Geron
I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich saves some processing and I/O. --

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Max Erickson
Sparklines is a script that does exactly what you are asking using python and PIL: http://bitworking.org/projects/sparklines/ max -- http://mail.python.org/mailman/listinfo/python-list

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Steve Holden
Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich saves some processing and

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Xavier Morel
Steve Holden wrote: Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img src=script_that_return_image_contents wich saves some

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread David Wahler
Xavier Morel wrote: Steve Holden wrote: Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread Steve Holden
David Wahler wrote: Xavier Morel wrote: Steve Holden wrote: Luiz Geron wrote: I don't have experience on this, but I think that you can make the script return the image contents directly to the img tag, without passing it to a img file, so you can use something like this: img

Re: How to generate graphics dynamically on the web using Python CGI script?

2006-01-20 Thread chris
This is a cool product that can produce any number of types of graphs. Supports Python, as well as lots of other languages. I have used it with success. There is a free version, as long as you don't mind the tiny logo they put into each graph. http://www.advsofteng.com/ -Chris --

How to generate graphics dynamically on the web using Python CGI script?

2006-01-19 Thread Debashis Dey
Hello, I have a python CGI program. I would like to show a graph within a HTML plage. I would like to dynamically generate the graph using the python CGI script on the web server side and send it to the browser. My question is how can I do this in python? Is there a free tool to do this? Can