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
Dealing with the JSON response objects is a nightmare. eg. for SELECT foo FROM bar, processing the response involves doing something like foos = [row['f'][0]['v'] for row in res.get('rows', [])]. Ideally, we'd be able to do foos = [row.foo for row in res] or such.
The text was updated successfully, but these errors were encountered:
Dealing with the JSON response objects is a nightmare. eg. for
SELECT foo FROM bar
, processing the response involves doing something likefoos = [row['f'][0]['v'] for row in res.get('rows', [])]
. Ideally, we'd be able to dofoos = [row.foo for row in res]
or such.The text was updated successfully, but these errors were encountered: