chimpler / pyhocon

HOCON parser for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: How to convert to "python types"?

stdedos opened this issue · comments

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?