Python embedded like PHP

Rob Nikander nikander at nc.rr.com
Tue Mar 12 15:13:39 EST 2002


Are there any projects out there that allow you to embed python in HTML
like PHP?  I like the PHP-style of embedding the bits of program in HTML,
but I'd like to use python...
Something like:

<html>
<?python
	print "<ul>"
	for reptile in ["Crocodile", "Python", "Iguana", "Tortoise"]:
		print "<li> %s </li>" % reptile
	print "</ul>"
?>
</html>



More information about the Python-list mailing list