You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a fairly large JSON file (6GB) of which I only want to read a certain subtree.
I was trying to use object_hook to only return the whole object when the key matches, but object_hook is only called for leaves with values, for objects it is called with key: None.
Is there something which I can do to read only read part of the file?