Skip to content

Instantly share code, notes, and snippets.

@rbrooks
Created August 19, 2016 17:48
Show Gist options
  • Save rbrooks/36a7466af87bd97f58f3371b6a5c55cb to your computer and use it in GitHub Desktop.
Save rbrooks/36a7466af87bd97f58f3371b6a5c55cb to your computer and use it in GitHub Desktop.
Whitelist Dictionary
def whitelist_dict(dic, keys):
# Filters a Dict by only including certain keys.
key_set = set(keys) & set(dic.keys())
return { key: dic[key] for key in key_set }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment