Query.list_rows
Last updated
Was this helpful?
Last updated
Was this helpful?
This method is deprecated. See the other table.to_* methods for different approaches to loading data.
For similar functionality but improved performance, see .to_pydict()
Return a list of rows in the query results.
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.
list<namedtuple>
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.,: