view pyikb/lconf.py @ 160:7551342718b6

Refactory pyikriam with patterns. - Use dyna_prog, a dynamic programming decorator, to cache city objects. - fake_moz to emulate a mozilla browser.
author Thinker K.F. Li <thinker@branda.to>
date Sat, 01 Nov 2008 21:29:51 +0800
parents 1c42ae140ad3
children
line wrap: on
line source

import os,string
class LoadConfigfile(object):
    def __init__(self):
	profile = os.environ["HOME"]+'/.eagleeye.pm'
	self.cd={}
	if os.path.isfile(profile):
	    print "Loading Config file."
	    cfile=open(profile,'r')
	    for line in cfile.xreadlines():
	    	if line[0:3]=='$::':
		   con=string.split(line[3:-2])
		   self.cd[con[0]]=con[2][1:-1]	   
	else:
	    print "File don't exist."