本文实例讲述了Python实现的简单模板引擎功能。分享给大家供大家参考,具体如下:
#coding:utf- 8 __author__="sdm" __author_email='sdmzhu3@gmail.com' __date__ ="$2009-8-25 21:04:13$" '' ' pytpl 类似 php的模板类 '' ' import sys import StringIO import os.path import os #模 板的缓存 _tpl_cache={} class Pytpl: def __init__(self,tpl_path='./' ): self.tpl_path=tpl_path self.data={} self.output = StringIO.StringIO() pass def set(self,name,value): '' ' 设 置模板变量 '' ' self.data[name]=value; pass def get(self,name): '' ' 得 到模板变量 '' ' t={} return t.get(name, '' ) pass def tpl(self,tplname): '' ' 渲 染模板 '' ' f=self.tpl_path+tplname if not os.path.exists(f): raise Exception('tpl:[%s] is not exists' % f) mtime=os.stat(f).st_mtime if not _tpl_cache.has_key(f) or _tpl_cache[f][ 'time' ]<mtime: src_code=self.__compile__(open(f).read()) try : t=open(f+'.py' , 'w' ) t.write(src_code) t.close() except: pass py_code=compile(src_code, f+'.py' , 'exec' ) _tpl_cache[f]={'code' :py_code, 'time' :mtime} else : py_code= _tpl_cache[f]['code' ] exec(py_code, {'self' :self}, self.data) return self.output.getvalue() def execute(self,code,data,tplname): '' ' 执 行这个模板 '' ' py_file_name=tplname+'.py' f=open(py_file_name,'w' ) f.write(code) f.close() execfile(py_file_name, {'self' :self}, data) def __compile__ (self,code): '' ' 编 译模板 查找 <"/n" ) t=[] for i in lines: indent2=indent tmp=i.strip(" /n/r" ) c=tmp[len(tmp)-1 :len(tmp)] # 判定最后一个字符 if (c== '{' ): indent+=1 tmp=tmp[0 :len(tmp)- 1 ]+ ":" elif(c=='}' ): indent-=1 tmp=tmp[0 :len(tmp)- 1 ] t.append((' ' * 4 *indent2) +tmp ) return "/n" .join(t) while 1 : if i>=tlen: break c=code[i]; if status== 0 : # 编译加速 pos_start=code.find(flag_start,pos_end); if (pos_start>- 1 ): s=code[pos_end:pos_start] t_code= 'echo ( ' +repr(s)+ ')' t_code=' ' *indent* 4 +t_code if s: py_code.append(t_code) i=pos_start last_pos=i # 进入代码状态 status=1 continue else : # 没有没有找到 pos_start=tlen t_code='echo ( ' +repr(code[pos_end:pos_start])+ ' ) ' t_code=' ' *indent* 4 +t_code py_code.append(t_code) break if status== 1 : # 查找结束标记 pos_end=code.find(flag_end,i) if (pos_end>- 1 ): # 需要跳过<"#coding:utf-8/nimport sys;global echo;echo=self.output.write/n" py_code_str+="/n" .join(py_code) py_code_str=py_code_str.replace("/t" , " " ) return py_code_str def test(): tpl=Pytpl('./' ); tpl.set('title' , '标题3' ) print tpl.tpl('test.html' ) pass if __name__ == "__main__" : test()
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
更新日志
2024年11月25日
2024年11月25日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]