Getting Started

Quick Start

 Alessio-Siciliano/bigquery-advanced-utils

You can quickly get started by installing the package with pip:

pip install bigquery-advanced-utils

Start as New Project

Prerequisites

Before starting, you need to have the following software installed:

Steps

Create a new virtual environment

python -m venv venv

Activate the new environment

source venv/bin/activate  # on macOS/Linux  
venv\Scripts\activate     # on Windows  

Install the package

Install the latest version available with the package manager PIP:

pip install bigquery-advanced-utils

Import classes in your code

Now, you can import all the classes from “bigquery_advanced_utils” as:

from bigquery_advanced_utils.bigquery import BigQueryClient
How to update the package with the future versions?

To update the package in your project to its latest versions, run the following command:

pip install --upgrade bigquery-advanced-utils