This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2PTUT/m/loadConf.py
sidya82 f1904ed512 modifié: m/fichier/conf
modifié:         m/loadConf.py
	nouveau fichier: m/log.py
	modifié:         m/login.py
	modifié:         superTornado.py
2014-03-02 22:57:48 +01:00

26 lines
686 B
Python

class LoadConf(object):
def loadValue(self, key):
with open("m/fichier/conf", "r") as source :
for ligne in source:
data = ligne.rstrip('\n\r').split('=')
if data[0] in key :
source.close()
return data[1]
source.close()
return "error"
def isBlind(self):
rep = self.loadValue("blind")
if rep == "1" :
return True
else if rep == "0":
return False
else :
return rep
def ipCamera(self)
return self.loadValue("camera")
def portServ(self)
return self.loadValue("port")