1

我创建了一个 Tornado Web 服务器,我需要将其打包为一个鸡蛋(使用 setuptools)

该项目包含许多 html 模板和静态图像,我已将它们作为数据文件包含在我的 egg 中。请注意,egg 是可执行的,不会被安装。IE

python mytornadoserver.egg

访问 html 模板/静态资源的标准方法是使用 template_path 和 static_path 设置。然而,在鸡蛋内这是行不通的。

我正在尝试使用 resource_strings - 但到目前为止没有成功。

我现在被卡住了,因为我无法加载 html/图像文件 - 所以我会感谢任何人提供的任何帮助/建议

非常感谢,马库斯

4

1 回答 1

1

终于解决了这个问题:

from pkg_resources import resource_filename
template_dir = resource_filename(__name__, "templates")

# then assign the template_dir to your template_path as normal....

resource_files 将整个目录提取到物理文件位置,并返回该位置。

于 2013-09-18T20:59:31.253 回答