Skip to content

Instantly share code, notes, and snippets.

@ryanwilsonperkin
Last active March 8, 2016 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanwilsonperkin/5d8c12dd5a2633680b44 to your computer and use it in GitHub Desktop.
Save ryanwilsonperkin/5d8c12dd5a2633680b44 to your computer and use it in GitHub Desktop.
Python method for fetching deeply nested dict keys à la ImmutableJS.getIn
def deep_get(o, keys):
return reduce(lambda prev, current: prev.get(current, {}), keys, o) or None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment