用python写的一个超小型配置文件读取器

配置文件格式如下:

file=e:/samba/2.ts

address=127.0.0.1

port=2345

datablock=20000

interval=0.01

showsend=1

使用方法如下:
cfg = readConfig('config.txt')
print cfg['file']
port = int(cfg['port'])
interval = float(cfg['interval'])

你可能感兴趣的:(python)