I need to be able to find an item in a list (an item in this case being a dict) based on some value inside that dict. The structure o
list
dict
Worked only with iter() for me:
iter()
my_item = next(iter(item for item in my_list if item['id'] == my_unique_id), None)