Metadata-Version: 2.1
Name: csv2bq
Version: 0.1.2
Summary: upload local csv file to bigquery
Author: Hiroyuki Kuromiya
Author-email: 15026387+kromiii@users.noreply.github.com
Description-Content-Type: text/markdown
License-File: LICENSE

# csv2bq

python package for uploading local csv files to google bigquery

## Installation

```bash
$ pip install csv2bq
```

## Prerequisites

Place your service account key file in `~/.config/gcloud/application_default_credentials.json`

## Usage

```bash
$ csv2bq sample.csv --project_id=sample --dataset_id=sample --table_id=sample
```

## Options

| Parameter | Description |
| --- | --- |
| project_id | project id (required) |
| dataset_id | dataset id (required) |
| table_id | table id (required) |
| mode | append or overwrite (default: append) |
| auto_create_table | auto create table (default: True) |
