Created
April 10, 2022 08:39
-
-
Save peterjpxie/241e4aefd5de515785e73c3c17fe3db8 to your computer and use it in GitHub Desktop.
dict_to_ini.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def dict_to_ini(dict_var, file=None): | |
ini_content_list = [] | |
def iterate_dict(var, prefix=None): | |
"""iterate dict and convert to a list of 'key1.key2[i] = value' string""" | |
if isinstance(var, dict): | |
for k, v in var.items(): | |
if prefix is None: | |
new_prefix = k # e.g. age | |
else: | |
new_prefix = prefix + "." + k # e.g. name.firstname | |
iterate_dict(v, new_prefix) | |
elif isinstance(var, list): | |
for index, value in enumerate(var): | |
new_prefix = "%s[%d]" % (prefix, index) # e.g. scores[0] | |
iterate_dict(value, new_prefix) | |
else: | |
# for multiple line string, i.e. with \n, convert to 1 line repr string | |
if isinstance(var, str) and "\n" in var: | |
var = repr(var) | |
this_item = "%s = %s" % (prefix, var) | |
nonlocal ini_content_list | |
ini_content_list.append(this_item) | |
iterate_dict(dict_var, None) | |
ini_content_list.sort() | |
ini_content = "\n".join(ini_content_list) | |
if file: | |
with open(file, "w") as f: | |
f.write(ini_content) | |
return ini_content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment