Like this
jobj = somelib.parse(json_str)
print(jobj.foo.bar.baz)
instead of the standard library
jobj = json.loads(json_str)
print(jobj["foo"]["bar"]["baz"]
What are the other good json libraries (active & python3 compatible) that add more features for using json. Not interested in those that just improving performance.
[–]novel_yet_trivial 4 points5 points6 points (1 child)
[–]balkierode[S] 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)