次の内容の構成ファイル(feedbar.cfg)があります。
[last_session]
last_position_x=10
last_position_y=10
次のPythonスクリプトを実行した後:
#!/usr/bin/env python
import pygtk
import gtk
import ConfigParser
import os
pygtk.require('2.0')
class FeedbarConfig():
""" Configuration class for Feedbar.
Used to persist / read data from feedbar's cfg file """
def __init__(self, cfg_file_name="feedbar.cfg"):
self.cfg_file_name = cfg_file_name
self.cfg_parser = ConfigParser.ConfigParser()
self.cfg_parser.readfp(open(cfg_file_name))
def update_file(self):
with open(cfg_file_name,"wb") as cfg_file:
self.cfg_parser.write(cfg_file)
#PROPERTIES
def get_last_position_x(self):
return self.cfg_parser.getint("last_session", "last_position_x")
def set_last_position_x(self, new_x):
self.cfg_parser.set("last_session", "last_position_x", new_x)
self.update_file()
last_position_x = property(get_last_position_x, set_last_position_x)
if __name__ == "__main__":
#feedbar = FeedbarWindow()
#feedbar.main()
config = FeedbarConfig()
print config.last_position_x
config.last_position_x = 5
print config.last_position_x
出力は次のとおりです。
10
5
ただし、ファイルは更新されません。cfgファイルの内容は同じままです。
助言がありますか ?
構成情報をファイルからPythonクラスにバインドする別の方法はありますか?JavaのJAXBのようなもの(ただし、XMLの場合はなく、.iniファイルのみ)。
ありがとう!