Skip to content

Instantly share code, notes, and snippets.

@i-sam
Last active December 30, 2015 08:59
Show Gist options
  • Save i-sam/7806136 to your computer and use it in GitHub Desktop.
Save i-sam/7806136 to your computer and use it in GitHub Desktop.
def rget(hash, li):
el = li.pop(0)
if li:
return rget(hash.get(el), li)
else:
return hash[el] if hash else None
rget(ec_list, ['DescribeCacheClustersResponse',
'DescribeCacheClustersResult',
'CacheClusters',
0,
'CacheNodeType'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment