Browse Source

Parse config entrys with ast.literal_eval to get python datatypes (like Tuples, Lists ...)

develop
Jonathan Golder 8 years ago
parent
commit
dac01a224b
  1. 20
      config.py

20
config.py

@ -27,13 +27,25 @@ python standard library module configparser
""" """
import configparser import configparser
import ast
import pywikibot import pywikibot
config = configparser.ConfigParser(interpolation=None) __config = configparser.ConfigParser(interpolation=None)
config.read(pywikibot.config.get_base_dir() + "/jogobot.conf") __config.read(pywikibot.config.get_base_dir() + "/jogobot.conf")
# Convert to dict as configparser could contain only strings
config = dict( __config )
# Parse all sections
for section in __config.sections():
# Convert to dict as configparser could contain only strings
config[section] = dict( __config[section] )
# Parse config with ast.literal_eval to get python datatypes
for key, value in config[section].items():
config[section][key] = ast.literal_eval( value )
# Make jogobot entrys available in root level (without sections) # Make jogobot entrys available in root level (without sections)
config = dict( config ) for key, value in config["jogobot"].items():
for key, value in dict(config["jogobot"]).items():
config[key] = value config[key] = value

Loading…
Cancel
Save