gpt4 book ai didi

python - Tornado 打包在可执行的 Egg 中 - 如何引用模板

转载 作者:太空宇宙 更新时间:2023-11-03 18:48:36 29 4
gpt4 key购买 nike

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

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

python mytornadoserver.egg

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

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

我现在陷入困境,因为我无法加载 html/图像文件 - 所以我将不胜感激任何人可以提供的任何帮助/建议

非常感谢,马库斯

最佳答案

问题终于解决了:

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 将整个目录提取到物理文件位置,并返回该位置。

关于python - Tornado 打包在可执行的 Egg 中 - 如何引用模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18881747/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com