如何创建 Python / Django Egg?

发布于 2024-08-09 16:01:33 字数 88 浏览 4 评论 0原文

我有一个 Python 程序(使用 Django - 这有关系吗?),如果你愿意的话,我想“捆绑”它。我该如何做到这一点,就像为 Java 创建 .jar 一样?

I have a Python program (with Django - does this matter?) that I want to 'bundle', if you like. How do I do this, in the same way one can create a .jar for Java?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

罗罗贝儿 2024-08-16 16:01:33

您想要使用 Python 安装工具。您创建一个描述文件 (setup.py),然后使用一行命令构建和创建 Egg(类似于 Make)。

一个很好的演示,可以引导您了解详细信息——现在已经消失了。这是另一个讨论

You want to use the Python SetupTools. You create a description file (setup.py) and then building and creating the egg is a one-line command (similar to Make).

There was a nice presentation that would walk you through the details -- it's gone now. So here's another discussion.

滿滿的愛 2024-08-16 16:01:33

DjangoSkel 是正确的选择。

安装 DjangoSkel:

pip install DjangoSkel

为 django Egg 创建骨架:

paster create -t django_namespace_app

列出可用模板

paster create --list-templates

DjangoSkel is the way to go.

Install DjangoSkel:

pip install DjangoSkel

Create skeleton for django egg:

paster create -t django_namespace_app

List available templates

paster create --list-templates
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文