0

背景:我正在使用 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)

我试过的:

  • 阅读genshi 文档
  • 搜索 StackOverflow。没有骰子。
  • 添加os = ostemplate.generate()通话中。这确实有效,但是必须复制我的导入很烦人且容易出错。
4

1 回答 1

0

我在 Genshi 之外找到了一种方法。这种方法添加所有全局和局部对象(导入以及全局和局部变量)并将它们添加到字典中。然后将字典generate()作为关键字 args 传递给(如果您不熟悉此答案,请参阅此答案)。

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()
于 2018-11-05T20:38:17.343 回答