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
def seek_keys(d, key_list):
for k, v in d.items():
if k in key_list:
if isinstance(v, dict):
print(list(v.keys())[0])
else:
print(str(v))
if isinstance(v, dict):
seek_keys(v, key_list)
seek_keys(json_dict, ['label'])
seek_keys(json_dict, ['center'])
Users are going to want a set of simple API's for saving and retrieving all kinds of metadata from the .json. Otherwise, folks might not catch on?
The text was updated successfully, but these errors were encountered: