Re: [Tutor] Generating simple HTML from within Python

2007-05-14 Thread Duncan Gibson
> I've been searching for a module to allow simple HTML generation, but > most of them appear to be more concerned with *parsing* HTML and XML. > The only one that looks promising from reviews dating back to 1998 or > so is HTMLgen, but the link on starship.python.net appears long dead. > > So my

Re: [Tutor] Generating simple HTML from within Python

2007-05-10 Thread Alan Gauld
"Duncan Gibson" <[EMAIL PROTECTED]> wrote > I've been searching for a module to allow simple HTML generation Further to my last reply here are the urls: http://www.cheetahtemplate.org/ http://kid-templating.org/ HTH, -- Alan Gauld Author of the Learn to Program web site http://www.freene

Re: [Tutor] Generating simple HTML from within Python

2007-05-10 Thread Alan Gauld
"Duncan Gibson" <[EMAIL PROTECTED]> wrote > I've been searching for a module to allow simple HTML generation, > but > most of them appear to be more concerned with *parsing* HTML and > XML. > The only one that looks promising from reviews dating back to 1998 > or > so is HTMLgen, but the link

Re: [Tutor] Generating simple HTML from within Python

2007-05-10 Thread Kent Johnson
Duncan Gibson wrote: > I've been searching for a module to allow simple HTML generation, but > most of them appear to be more concerned with *parsing* HTML and XML. > The only one that looks promising from reviews dating back to 1998 or > so is HTMLgen, but the link on starship.python.net appears

Re: [Tutor] Generating simple HTML from within Python

2007-05-10 Thread Mike Hansen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Duncan Gibson > Sent: Thursday, May 10, 2007 10:25 AM > To: tutor@python.org > Subject: [Tutor] Generating simple HTML from within Python > > > I'm updating a

[Tutor] Generating simple HTML from within Python

2007-05-10 Thread Duncan Gibson
I'm updating an application at the moment that generates simple HTML files. However, it's all done using plain strings and brute force. It's hard to read, and isn't very robust in the face of special characters and matching start and end tags. I've been searching for a module to allow simple HTML