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/loadConf.py
sidya82 ca251812bd nouveau fichier: loadConf.py
nouveau fichier: login.py
2014-02-27 19:58:09 +01:00

17 lines
479 B
Python

class LoadConf(object):
def loadHand(self):
with open("fichier/conf", "r") as source :
for ligne in source:
data = ligne.rstrip('\n\r').split('=')
if data[0] in 'handicap' :
source.close()
return data[1]
source.close()
return 0
def estAveugle(self):
if self.loadHand() == "1" :
return True
else :
return False