-
Notifications
You must be signed in to change notification settings - Fork 6
Iterate through TransientObject items? #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
Comments
I tried briefly to implement this, but ran into problems (not surprisingly) nested dictionaries -- I think maybe the solution is to "realize" any nested dictionaries or lists. That is, if the buffer expected to be a value starts with Anyway, this turned into a longer lunch break than I intended :) so I am going to stop the yak-shaving here. |
@mattdm on this the added |
Ah forgot to say, but this is implemented in #9 |
This is somewhat related to #5. Although it is probably safe to assume that the JSON dictionary I'm trying to parse will always be in the same order... it might not.
Therefore, I'd like to do something like:
But, there is no
items()
in TransientObject. How hard would this be to implement? (The above code works with fulljson_stream
, as does something like:which is basically exacatly what I want to do (except more than just printing of course).
The text was updated successfully, but these errors were encountered: