web-dev-qa-db-ja.com

Pythonセクションからすべての値を取得する構成パーサー?

構成パーサーを使用してセクションからすべての値を取得したい

私はこれを使用しましたが、最初の値のみを提供します

def ConfigSectionMap(section):
  dict1 = {}
  options = Config.options(section)
  for option in options:
    try:
      dict1[option] = Config.get(section, option)
      if dict1[option] == -1:
        DebugPrint("skip: %s" % option)
    except:
      print("exception on %s!" % option)
      dict1[option] = None
    return dict1


  Config = ConfigParser.ConfigParser()
  Config.read("/etc/harvest.conf")
  print ConfigSectionMap("files").values()
38
Rishabh

それを辞書にしてください:

dict(Config.items('Section'))
97
Niclas Nilsson

順序が重要な場合は、リストにすることができます

list(Config.items('Section'))
7
jithu83