我在项目中定义了mongoengine schema
个文件,现在我有一个需要共享这些文件的新项目。如果我编辑模式文件并且我总是需要在两个项目中同步文件,我有一些不错的选择吗?
这是我的旧项目:
ipin.crawler.orm # this is the package I want to share
url_index.py
page_store.py
user_info.py
captcha_info.py
....
新项目:
ipin.web.orm
url_index.py
page_store.py
user_info.py
....