Skip to content

Commit

Permalink
Add BigQuery example to README.md. closes #1899
Browse files Browse the repository at this point in the history
  • Loading branch information
daspecster committed Jun 24, 2016
1 parent f6d654f commit 43d9637
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ append-only tables, using the processing power of Google's infrastructure.

This package is still being implemented, but it is almost complete!

.. code:: python
from gcloud import bigquery
client = bigquery.Client()
dataset = client.dataset('dataset_name')
dataset.create() # API request
See the ``gcloud-python`` API `BigQuery documentation`_ to learn how to connect
to BigQuery using this Client Library.

Expand Down

0 comments on commit 43d9637

Please sign in to comment.