本文整理汇总了Python中_parse.Template.render方法的典型用法代码示例。如果您正苦于以下问题:Python Template.render方法的具体用法?Python Template.render怎么用?Python Template.render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类_parse.Template
的用法示例。
在下文中一共展示了Template.render方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse
# 需要导入模块: from _parse import Template [as 别名]
# 或者: from _parse.Template import render [as 别名]
def parse(template, context, _locals, timed, cache, repeat):
# use of extensions to inject _locals
_sandbox.extensions = _locals
try:
if timed and cache:
t = timeit.Timer('tpl.render()', 'from __main__ import Template\ntpl = Template("{0}")\ncontext={1}'.format(template, str(context)))
print '%.2f ms %s' % (1000 * t.timeit(100)/100, template)
elif timed:
t = timeit.Timer('Template("{0}").render()'.format(template), 'from __main__ import Template')
print '%.2f ms %s' % (1000 * t.timeit(repeat)/repeat, template)
else:
t = Template(template)
print '<!DOCTYPE html>\n'+etree.tostring(etree.fromstring(t.render(**context)), pretty_print=True)
except Exception as e:
print 'Exception rendering ', template
print e
示例2: parse
# 需要导入模块: from _parse import Template [as 别名]
# 或者: from _parse.Template import render [as 别名]
_f = sys.argv[1]
#print parse(_f)
t = Template(_f)
if '-p' in sys.argv:
def run():
for x in range(2000):
t.render()
import cProfile, pstats
prof = cProfile.Profile()
prof.run('run()')
stats = pstats.Stats(prof)
stats.strip_dirs()
stats.sort_stats('cumulative')
stats.print_stats(25)
else:
print t.render()
########NEW FILE########
__FILENAME__ = _pre
from cutils import parse_attr, split_space, parse_inline, parse_ws, sub_str, sub_strs, var_assign
from _sandbox import _open
directives = ['%', '#', '.', '\\']
py_stmts = ['for', 'if', 'while', 'try', 'except', 'with', 'def']
def is_py_stmt(l):
if l[-1] != u':':
return False
for stmt in py_stmts:
if l.startswith(stmt):