在将 configobj 用于 python 时,我遇到了一些路径问题。我想知道是否有办法不在我的帮助文件中使用绝对路径。例如,而不是:
self.config = ConfigObj('/home/thisuser/project/common/config.cfg')
我想使用类似的东西:
self.config = ConfigObj(smartpath+'/project/common/config.cfg')
背景: 我已经将我的配置文件放在一个公共目录中,旁边是一个助手类和一个实用程序类:
common/config.cfg
common/helper.py
common/utility.py
助手类有一个方法可以返回配置部分中的值。代码是这样的:
from configobj import ConfigObj
class myHelper:
def __init__(self):
self.config = ConfigObj('/home/thisuser/project/common/config.cfg')
def send_minion(self, race, weapon):
minion = self.config[race][weapon]
return minion
实用程序文件导入帮助文件,实用程序文件由驻留在我项目的不同文件夹中的一堆不同类调用:
from common import myHelper
class myUtility:
def __init__(self):
self.minion = myHelper.myHelper()
def attack_with_minion(self, race, weapon)
my_minion = self.minion.send_minion(race, weapon)
#... some common code used by all
my_minion.login()
以下文件导入实用程序文件并调用该方法:
/home/thisuser/project/folder1/forestCastle.py
/home/thisuser/project/folder2/secondLevel/sandCastle.py
/home/thisuser/project/folder3/somewhere/waterCastle.py
self.common.attack_with_minion("ogre", "club")
如果我不使用绝对路径并且我运行 forestCastle.py 它会在/home/thisuser/project/folder1/中查找配置,我希望它在project/common/中查找它,因为/home/thisuser会改变