Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: clarify %%bigquery` magics and fix broken link #508

Merged
merged 1 commit into from Feb 16, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/usage/index.rst
Expand Up @@ -29,7 +29,7 @@ Integrations with Other Libraries

pandas

See also, the :mod:`google.cloud.bigquery.magics` module for integrations
with Jupyter.
See also, the :mod:`google.cloud.bigquery.magics.magics` module for
integrations with Jupyter.


9 changes: 9 additions & 0 deletions google/cloud/bigquery/magics/magics.py
Expand Up @@ -14,6 +14,15 @@

"""IPython Magics

To use these magics, you must first register them. Run the ``%load_ext`` magic
in a Jupyter notebook cell.

.. code::

%load_ext google.cloud.bigquery

This makes the ``%%bigquery`` magic available.

.. function:: %%bigquery

IPython cell magic to run a query and display the result as a DataFrame
Expand Down