shrek 发表于 2013-1-28 19:35:40

python的cheetah小例子

从python in a nutshell 中摘抄小例子.
import Cheetah.Templateimport os, time, sockettt = Cheetah.Template.Template('''<html><head><title>Report by $USER</title></head><body><h1>Report on host data</h1><p>Report written at $asctime:<br/>#for $hostline in $uname$hostline<br/>#end for</p></body></html>''', searchList=)try:   tt.uname = os.unameexcept AttributeError:    tt.uname = print tt
页: [1]
查看完整版本: python的cheetah小例子