Python の configparser の引数 comment_prefixes

データ

以下のデータを読み込みます.複数のコメント (#, ;, comment, //) が使われています.このデータを Python の configparser で読み込みます.もちろん,コメント分は読み込みません.

# comment_prefixes を使うと様々なコメントが可能
; これもコメント
comment これもコメント
// これもコメント

[animal]
  dog: 犬
  cat: 猫
  swan: 白鳥
  camel: らくだ

プログラム

コンストラクターの引数 comment_prefixes の値をタプルで指定します.これが,キーと値を分けるデリミタとなります.

#!/usr/bin/python3
import configparser

dat = configparser.ConfigParser(\
    comment_prefixes=('#', ';', 'comment', '//'))
dat.read('sample.dat')

for section in dat.sections():
    for key in dat[section]:
        print(section, '>', key, ':', dat[section][key])
    print()

実行結果

以下に実行結果を示します.

animal > dog : 犬
animal > cat : 猫
animal > swan : 白鳥
animal > camel : らくだ