-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iterator on JSON objects #9
Conversation
…accessing an item
…f the current key. Use common active_key, fix finish(), etc. Rename example and use the key iteration. Additional tests.
@Neradoc will this also make it easy to implement:
|
|
Does the original library do this? https://github.com/daggaz/json-stream (Do we care if it doesn't?) |
The json_stream library has iterators, but doesn't do import json_stream
source = io.BytesIO(b'{"a":1,"b":2,"c":3}')
stream = json_stream.load(source)
for key, value in stream.items():
print(key, value) so does: for key in stream:
print(key) This only works in this version: source = io.BytesIO(b'{"a":1,"b":2,"c":3}')
stream = json_stream.load(source)
for key in stream:
print(key, stream[key])
I would argue that being able to loop through keys and access the value only when needed is a good feature to have. Granted in most cases the values might be numbers, small strings or Transient subclasses, but it could be a big string. Another difference introduced in #7 is the ability to access stream["dict"] multiple times as long as we are still "in that dict". This fails with the json_stream library: source = io.BytesIO(b'{"a":{"x":10,"y":20},"b":2,"c":3}')
stream = json_stream.load(source)
print(stream["a"]["x"])
print(stream["a"]["y"])
That's mostly a convenience one, since we can always save |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool. Thank you!
Updating https://github.com/adafruit/Adafruit_CircuitPython_INA228 to 1.0.1 from 1.0.0: > Update adafruit_ina228.py Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1305 to 1.4.0 from 1.3.21: > Merge pull request adafruit/Adafruit_CircuitPython_SSD1305#16 from mikeysklar/ssd1305-white-module-col-offset Updating https://github.com/adafruit/Adafruit_CircuitPython_TLV320 to 1.0.0 from 51c14aa: < Update README.rst Updating https://github.com/adafruit/Adafruit_CircuitPython_Bitmap_Font to 2.3.0 from 2.2.0: > Merge pull request adafruit/Adafruit_CircuitPython_Bitmap_Font#70 from tannewt/cmap03 Updating https://github.com/adafruit/Adafruit_CircuitPython_Display_Text to 3.2.4 from 3.2.3: > Merge pull request adafruit/Adafruit_CircuitPython_Display_Text#219 from FoamyGuy/use_ruff Updating https://github.com/adafruit/Adafruit_CircuitPython_JSON_Stream to 0.9.0 from 0.8.6: > Merge pull request adafruit/Adafruit_CircuitPython_JSON_Stream#9 from Neradoc/iterator-on-objects > Merge pull request adafruit/Adafruit_CircuitPython_JSON_Stream#8 from Neradoc/fix-string-in-string Updating https://github.com/adafruit/Adafruit_CircuitPython_USB_Host_Descriptors to 0.2.1 from 0.1.4: > Merge pull request adafruit/Adafruit_CircuitPython_USB_Host_Descriptors#4 from FoamyGuy/two_mice_example > Merge pull request adafruit/Adafruit_CircuitPython_USB_Host_Descriptors#3 from FoamyGuy/find_mouse_helper Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA: > Added the following libraries: Adafruit_CircuitPython_TLV320
This adds 2 ways to iterate on an object's items following the APIs of
dict()
.for key in obj
it iterates over the keys without consuming or loading the values. The current key's value can then be accessed withobj[key]
.TransientObject.items()
method will iterate on item tuples fetching both key and value withfor key, value in obj.items()
. Because it fetches every value (be it a basic type or aTransient
instance), it will use more memory.So this works, although note that you can only get the
key
once unless it's a container too.The new example
json_stream_local_file_advanced.py
uses the iterator to find keys that match a list of expected keys and returns a python dict that contains only those items. It's an example of how to retrieve a set of keys when the order is unknown.I am not sure how to best document the iterator outside of the
items()
property.