From 43d9637d5949879e296cbd5b26751c26c37b8bf8 Mon Sep 17 00:00:00 2001 From: Thomas Schultz Date: Fri, 24 Jun 2016 15:09:31 -0400 Subject: [PATCH] Add BigQuery example to README.md. closes #1899 --- README.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.rst b/README.rst index 0cab79fee119..b200cd009c63 100644 --- a/README.rst +++ b/README.rst @@ -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.