Query.list_rows
This method is deprecated. See the other table.to_* methods for different approaches to loading data.
For similar functionality but improved performance, see Table.to_arrow_table().to_pydict()
Query.list_rows(max_results=None, *, progress=True) → list<namedtuple>
Return a list of rows in the query results.
Parameters:
max_results
: int, default None
The maximum number of rows to return. If not specified, all rows in the query results will be read.
progress
: bool, default True
Whether to display a progress bar.
Returns:
list<namedtuple>
Notes:
When calling list_rows
, a python list of named tuples will be returned, allowing you to reference values in each row by either the variable name or offset. E.g.,:
Last updated