Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 3b6a272

Browse files
committed
docs: add pandas extension docs
1 parent 82c0320 commit 3b6a272

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

bigframes/extensions/pandas/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,15 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14+
15+
"""
16+
BigQuery DataFrames automatically registers a pandas extenstion when imported.
17+
This allows you to use the power of the BigQuery engine with pandas objects
18+
directly.
19+
"""
20+
21+
from bigframes.extensions.pandas.dataframe_accessor import (
22+
PandasBigQueryDataFrameAccessor,
23+
)
24+
25+
__all__ = ["PandasBigQueryDataFrameAccessor"]

docs/reference/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ BigQuery DataFrames provides extensions to pandas DataFrame objects.
2727
.. autosummary::
2828
:toctree: api
2929

30-
bigframes.extensions.pandas.dataframe_accessor.BigQueryDataFrameAccessor
30+
bigframes.extensions.pandas
3131

3232
ML APIs
3333
~~~~~~~

0 commit comments

Comments
 (0)