Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Django 编写我的第一个 Python 程序。该网站将托管在亚马逊上。但是,我的 API 将使用 Django 和 Piston 坐在另一个实例上。我不想在两台服务器上复制我的模型。我怎样才能让 API 与主 Django 实例共享相同的模型,或者我应该吗?
您可以创建一个小型 django 应用程序(将包含模型定义和逻辑)作为 python 模块并将其安装在两个服务器/应用程序上,而不是两次编写相同的数据模型。