Skip to main content

Google BigQuery magics for Jupyter and IPython

Project description

GA pypi versions

Querying massive datasets can be time consuming and expensive without the right hardware and infrastructure. Google BigQuery solves this problem by enabling super-fast, SQL queries against append-mostly tables, using the processing power of Google’s infrastructure.

Quick Start

In order to use this library, you first need to go through the following steps:

  1. Select or create a Cloud Platform project.

  2. Enable billing for your project.

  3. Enable the Google Cloud BigQuery API.

  4. Setup Authentication.

Installation

Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Supported Python Versions

Python >= 3.7

Unsupported Python Versions

Python == 3.5, Python == 3.6.

Mac/Linux

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install bigquery-magics

Windows

pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install bigquery-magics

Example Usage

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

%load_ext bigquery_magics

Perform a query

%%bigquery
SELECT name, SUM(number) as count
FROM 'bigquery-public-data.usa_names.usa_1910_current'
GROUP BY name
ORDER BY count DESC
LIMIT 3

Since BigQuery supports Python via BigQuery DataFrames, %%bqsql is offered as an alias to clarify the language of these cells.

%%bqsql
SELECT name, SUM(number) as count
FROM 'bigquery-public-data.usa_names.usa_1910_current'
GROUP BY name
ORDER BY count DESC
LIMIT 3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bigquery_magics-0.6.0.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

bigquery_magics-0.6.0-py2.py3-none-any.whl (29.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file bigquery_magics-0.6.0.tar.gz.

File metadata

  • Download URL: bigquery_magics-0.6.0.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for bigquery_magics-0.6.0.tar.gz
Algorithm Hash digest
SHA256 650a7c056e95f098d0924888b77eaa83c164045e025148b962e08bb687f7778e
MD5 1832f295f4af952e8420c75e06142eaf
BLAKE2b-256 fb8771599d70ac4916512c8b0e5986201f88f233d184d2192b9c494c66b6adea

See more details on using hashes here.

File details

Details for the file bigquery_magics-0.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for bigquery_magics-0.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 759a6c83d2e08c0aaadef4b00c0e9cd692fdd6c57ff8b7e46dc82d8f2b8521ea
MD5 be8737bc5ae4e3961238dd22fd74cd30
BLAKE2b-256 e86ab54f77e598a1cb694615ab09fd32bb0c7c9b01c76b5ce9a593c23775574e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page