-
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
Odd (literally) issue with nested dictionaries from weather.gov API #5
Comments
FWIW, this works with https://github.com/daggaz/json-stream (on Fedora Linux). I suppose I could try to bring that into CircuitPython rather than using this, but that sends me on a yak-shaving quest I'd like to avoid for my lunchtime project. :) |
I don't think so. I'd expect it to work. This looks like a bug.
I don't think so. We'd need to add an item iterator to TransientObject I think.
I think you are on the right track. You just hit a bug in the implementation. |
Thanks. I took a stab at addressing it, but ended up going in circles. In the meantime, this horrible thing works when I'm pretty sure it shouldn't: period = next(periods)
while True:
try:
print(f"Rain%: {period['probabilityOfPrecipitation']['value']}")
except KeyError:
break That is, despite only nominally loading the first period from the list, it then proceeds to continue through each when searching for the key I'm going to put this horrible hack into place in my project now, and later perhaps owe a |
I'm trying to fetch and parse https://api.weather.gov/gridpoints/BOX/71,90/forecast/hourly with a MatrixPortal, which does not have a lot of spare RAM. Things are basically working, but when I tried to add probability of precipitation to the data I'm fetching, I got a surprise — it's skipping every other list item.
The json in question is a dictionary with the data I want under the key
properties
. That key's value is another dictionary, which contains the keyperiods
, which is a list of more dictionaries. Parsing all this works fine as long as I'm simply reading key/value pairs in the right order:For testing, I'm using the system python on Fedora Linux, with hourly.json pre-downloaded. But this is exactly the same problem I'm seeing on the MatrixPortal with CircuitPython 9.1. What problem? Well, each period looks something like this:
and if try to get at one of the further-nested values, that's when stuff gets weird. For example:
... skips every other period, printing (in this example) just the odd-numbered ones.
Or, if I remove any lookups for keys after the nested item, like:
... it stops after the first period.
Is there a better way to do this?
Is there a way to turn the
Transient
"period" into a real dictionary on each step of the loop? That'll use more memory, but only temporarily. Or, for that matter, justperiod['probabilityOfPrecipitation']
?Or should I be doing something else altogether?
The text was updated successfully, but these errors were encountered: