Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 786 Bytes

magics.rst

File metadata and controls

34 lines (23 loc) · 786 Bytes

IPython Magics for BigQuery

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

%load_ext google.cloud.bigquery

This makes the %%bigquery magic available.

Code Samples

Running a query:

.. literalinclude:: ./samples/magics/query.py
   :dedent: 4
   :start-after: [START bigquery_jupyter_query]
   :end-before: [END bigquery_jupyter_query]

Running a parameterized query:

.. literalinclude:: ./samples/magics/query_params_scalars.py
   :dedent: 4
   :start-after: [START bigquery_jupyter_query_params_scalars]
   :end-before: [END bigquery_jupyter_query_params_scalars]

API Reference

.. automodule:: google.cloud.bigquery.magics.magics
    :members: