html code generation

George Trojan george.trojan at noaa.gov
Wed Jan 20 16:03:10 EST 2010


I need an advice on table generation. The table is essentially a fifo, 
containing about 200 rows. The rows are inserted every few minutes or 
so. The simplest solution is to store row data per line and write 
directly html code:
line = "<tr><td>value1</td><td>value2>... </tr>"
each run of the program would read the previous table into a list of 
lines, insert the first row and drop the last one, taking care of table 
header and trailer.
Is there a more classy solution?

George



More information about the Python-list mailing list