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'd like a native way to iterate over Table data from python. I think it can be efficient and batching behind the scenes. Feature wise, I think it needs to ability to iterate all the columns implicitly, or just a subset (without the need to create a view).
# iterate over all columnsforx, y, zinmy_table:
...
# iterate over some columnsforfoo, barinmy_table.iter(["Foo", "Bar"]):
...
Maybe the interface would need to be context manager based though? If so, then maybe something like:
I'd like a native way to iterate over Table data from python. I think it can be efficient and batching behind the scenes. Feature wise, I think it needs to ability to iterate all the columns implicitly, or just a subset (without the need to create a view).
Maybe the interface would need to be context manager based though? If so, then maybe something like:
I'm not picky about the naming.
As a workaround, I can currently do something like this:
but this is an all-at-once approach that is only to be used with "small" tables.
The text was updated successfully, but these errors were encountered: