Follow-up to https://github.com/googleapis/google-cloud-python/issues/7293 There are use cases where it's not ideal to download a whole table at once, but a pandas DataFrame is still desired. Potential solution: Make the `pages` member of `RowIterator` return a generator of a subclass of `google.api_core.page_iterator.Page` with a `to_dataframe()` method.
Follow-up to #7293
There are use cases where it's not ideal to download a whole table at once, but a pandas DataFrame is still desired.
Potential solution:
Make the
pagesmember ofRowIteratorreturn a generator of a subclass ofgoogle.api_core.page_iterator.Pagewith ato_dataframe()method.