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

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 ho

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 > (http://meyerwe

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: > > > > wich saves some processing and I/O. > I like this method. You ha

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: > > > > > > > > wich saves some processing and I

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: > > > > > > > > wich saves some processing and I

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 -- http://mail.

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 t

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: > >> > >> > >> > >> wi

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: >> >> >> >> wich saves some processing and I/O. >> >

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: > > > > wich saves some processing and I/O. > No it doesn't, because the s

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 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: wich saves some processing and I/O. -- 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 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

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

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 so