背景:我正在使用Genshi生成HTML报告。
import genshi
import os
from genshi.template import MarkupTemplate
files = [
r"a\b\c.txt",
r"d/e/f.txt",
]
html = '''
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/">
<head>
</head>
<body>
<p py:for="f in sorted(files, key=lambda x: x.lower().split(os.path.sep))">
${f}
</p>
</body>
</html>
'''
template = MarkupTemplate(html)
stream = template.generate(
files = files
)
print(stream.render('html'))
问题:Genshi抛出UndefinedError异常,因为它不知道我导入的模块。
D:\SVN\OSI_SVT\0.0.0.0_swr65430\srcPy\OSI_SVT>python36 test.py
Traceback (most recent call last):
File "test.py", line 26, in <module>
print(stream.render('html'))
File "C:\Python36\lib\site-packages\genshi\core.py", line 184, in render
return encode(generator, method=method, encoding=encoding, out=out)
...
genshi.template.eval.UndefinedError: "os" not defined
问题:有什么方法可以使Genshi自动识别导入的模块?
如果这不是Genshi固有的,那么我会接受一个答案,即以编程方式创建了已导入的模块集合,因此可以将它们传递给generate()
调用。例如:generate(**args)
我尝试过的事情:
os = os
添加到template.generate()
调用中。确实可以,但是必须复制我的导入内容很烦人且容易出错。答案 0 :(得分:0)
我在Genshi之外找到了一种方法。这种方法添加所有全局和局部对象(导入以及全局和局部变量),并将它们添加到字典中。然后将字典作为关键字args传递给generate()
(如果您不熟悉,请参见this answer)。
import genshi
import os
import types
from genshi.template import MarkupTemplate
html = '''
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/">
<head>
</head>
<body>
<p py:for="f in sorted(files, key=lambda x: x.lower().split(os.path.sep))">
${f}
</p>
</body>
</html>
'''
def main():
files = [
r"a\b\c.txt",
r"d/e/f.txt",
]
generation_args = {}
for scope in [globals(), locals()]:
for name, value in scope.items():
generation_args[name] = value
template = MarkupTemplate(html)
stream = template.generate(**generation_args)
print(stream.render('html'))
main()