HTML Table-of-Content Extraction Script

Fredrik Lundh fredrik at pythonware.com
Tue Nov 28 11:21:44 EST 2006


robert wrote:

> I'm looking for a function which extracts a table of contents
 > of HTML file(s) from <Hx....><a name=...></a>...</Hx>
 > and possibly auto-creates the ancors.
> Maybe something already exists?

that's the kind of stuff you'll write in approximately two minutes using 
BeautifulSoup (or if you prefer the ElementTree API, ElementSoup).

start here:

     http://www.crummy.com/software/BeautifulSoup/

</F>




More information about the Python-list mailing list