hukkin / tomli

A lil' TOML parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any option to use and merge configs from multiple files?

keinagae opened this issue · comments

The Python dict has a merge operator

a = {"a": 0}
b = {"b": 1}
assert a | b == {"a": 0, "b": 1}