Helpers
- sane.helpers.recursive_update(dest, source)[source]
Update mapping
destwithsource, recursively updating any nested mapping instanceThis will update/override any value in
destwith the value that is present insource. If the value insourceis a mapping (dict) then the key for which this is being updated withindestis updated recursively, defaulting to an emptydictif that key does not exist yet.