海上月明

editer by sun
posts - 162, comments - 51, trackbacks - 0, articles - 8
   :: 首页 :: 新随笔 ::  :: 聚合  :: 管理

读写配置文件 by limodou

Posted on 2008-01-28 22:36 pts 阅读(236) 评论(0)  编辑  收藏 所属分类: Python
读写配置文件 by limodou

下面是我根据sakulagi的思路改写的程序:

#! /usr/bin/python

import os
import sys

class Ini:
    """ Assume that property file is "ARG=VALUE" format and no space is allowed on either side of \"=\" """
    def __init__(self, pfile):
        self.items = {}
   
        for line in file(pfile):
            line = line.strip()
            if not line: continue
            if line.startswith('#'): continue
            key, value = line.split('=', 1)
            self.items[key.strip()] = value.strip()
   
    def getdict(self):
        return self.items


if __name__ == "__main__":
    print "Self Test Begin"
    # Generate the test file
    if len(sys.argv) == 1:
        os.system("echo # Comment >; test.properties"
        os.system("echo LOCK=true >;>; test.properties"
        os.system("echo TEST.config.1=234 >;>; test.properties"
        pf = Ini("test.properties";
    else:
        pf = Ini(sys.argv[1])
    print pf.getdict()

这里最后我的生成test.properties与原程序不同,因为发现在里面的双引号也输出到文件中去了,因此我去掉了。


Powered by ScribeFire.


只有注册用户登录后才能发表评论。


网站导航: