Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Note: The canonical version of this documentation can always be found on the
`BigQuery sandbox <https://cloud.google.com/bigquery/docs/sandbox>`__ to
try the service for free.

Also, consider using BigQuery DataFrames
(`bit.ly/bigframes-intro <https://bit.ly/bigframes-intro>`__)
Also, consider using `BigQuery DataFrames
<https://dataframes.bigquery.dev>`__
Comment on lines +26 to +27
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For improved readability and maintainability of the reStructuredText source, I recommend using a substitution for this link. This approach keeps the main body of the text cleaner and centralizes link definitions.

You can replace the inline link with a substitution reference here, and then add the corresponding definition at the end of the file:

.. |BigQuery DataFrames| replace:: `BigQuery DataFrames <https://dataframes.bigquery.dev>`__
Suggested change
Also, consider using `BigQuery DataFrames
<https://dataframes.bigquery.dev>`__
Also, consider using |BigQuery DataFrames|

to process large results with pandas compatible APIs with transparent SQL
pushdown to BigQuery engine. This provides an opportunity to save on costs
and improve performance.
Expand Down
2 changes: 1 addition & 1 deletion pandas_gbq/core/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def download_results(
num_gib = num_bytes / pandas_gbq.constants.BYTES_IN_GIB
warnings.warn(
f"Recommendation: Your results are {num_gib:.1f} GiB. "
"Consider using BigQuery DataFrames (https://bit.ly/bigframes-intro)"
"Consider using BigQuery DataFrames (https://dataframes.bigquery.dev)"
"to process large results with pandas compatible APIs with transparent SQL "
"pushdown to BigQuery engine. This provides an opportunity to save on costs "
"and improve performance. "
Expand Down
Loading