I have a JSON object in Python that represents operation data, and it's heavily nested. In constructing my UI for it, it looks like I'll need to show a section of it in a tree view.
Is there a way to find a key in a JSON object in Python? From the docs, it doesn't look like it. I could write something to traverse the object and find it, but if there's an out of the box way, that'd be preferable. Is there such a way?
Thank you for your time.