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 might implement this if I feel like it but just wanted to drop the idea here. So basically this library is ideal for micropython on low memory devices, but doesn't have a way to parse bigger-than-ram inputs.
It seems like the core API up until _break_down is already an iterator that reads from a file-like object. So it seems like you'd just have to write a IterWire subclass that returns an iterator like (path, value) instead of assembling a dict or tuple. Would be a fun puzzle.
The text was updated successfully, but these errors were encountered:
I might implement this if I feel like it but just wanted to drop the idea here. So basically this library is ideal for micropython on low memory devices, but doesn't have a way to parse bigger-than-ram inputs.
It seems like the core API up until
_break_down
is already an iterator that reads from a file-like object. So it seems like you'd just have to write aIterWire
subclass that returns an iterator like(path, value)
instead of assembling a dict or tuple. Would be a fun puzzle.The text was updated successfully, but these errors were encountered: