pyhocon
pyhocon copied to clipboard
Question: How to convert to "python types"?
If I'd like to use the HOCON conf as "primitive python types", is my only solution to do something like e.g.:
def HOCONtoPythonObj(obj):
return json.loads(HOCONConverter.to_json(obj))
myself?