I have a JSON array that I\'m cleaning up in Python. I want to remove the imageData property:
imageData
data.json
[{\"title\": \"
[ item for item in data if not item['imageData'] ]
is empty becaus all have imageData. You are just testing for it, not removing it.
Loop over date and del item['imageData'] on each item.
date
del item['imageData']
item