I\'ve been whacking away at this for a while to no avail... Any help would be greatly appreciated.
I have:
[{\'event\': 0, \'voltage\': 1, \'time\':
A simple implementation will suffice in my opinion:
grouping = {} for d in dictlist: if d[field] not in grouping: grouping[d[field]] = [] grouping[d[field]].append(d) result = list(result.values())