Skip to content
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
7 changes: 7 additions & 0 deletions bigframes/operations/blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@

@log_adapter.class_logger
class BlobAccessor(base.SeriesMethods):
"""
Blob functions for Series and Index.

.. note::
BigFrames Blob is still under experiments. It may not work and subject to change in the future.
"""

def __init__(self, *args, **kwargs):
if not bigframes.options.experiments.blob:
raise NotImplementedError()
Expand Down
8 changes: 8 additions & 0 deletions docs/reference/bigframes.pandas/series.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ Struct handling
:inherited-members:
:undoc-members:

Blob handling
^^^^^^^^^^^^^

.. automodule:: bigframes.operations.blob
:members:
:inherited-members:
:undoc-members:

Plotting handling
^^^^^^^^^^^^^^^^^

Expand Down