Skip to content

Instantly share code, notes, and snippets.

View gobid's full-sized avatar

Gobi Dasu gobid

View GitHub Profile
# make sure you only commit this file and int-call-codes-full-native-names to github
import json
def get_by_attr(test_list, attr, attr_val):
for x in test_list:
if x[attr] == attr_val:
break
else:
x = None