Main folder
|-project1
|-project2
我对Django项目具有上述结构。 当我在脚本中的project1中时,我使用os.chdir(to_project2)来进行项目2 我想访问project2的settings.py并获取一些属性。有可能吗?
答案 0 :(得分:0)
#You need to point your directory.[Ex: project2]
import os
os.chdir(project2 )
cd = os.getcwd()
# print the current directory
print("Current directory:", cwd)
#For Access the Django setting attributes
import django
from django.conf import settings
您可以从python文件之一中的所有上述代码中使用:something.py