https://github.com/quipper/embulk-output-google_sheets
https://github.com/quipper/embulk-output-google_sheets
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/quipper/embulk-output-google_sheets
- Owner: quipper
- License: mit
- Created: 2020-06-03T03:19:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-10T10:37:52.000Z (about 4 years ago)
- Last Synced: 2025-04-05T07:33:00.175Z (about 1 year ago)
- Language: Ruby
- Size: 15.6 KB
- Stars: 5
- Watchers: 39
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Google Sheets output plugin for Embulk
Embulk output plugin to insert data into Google Sheets
## Overview
insert data into Google Sheets using [Google Sheets API v4](https://developers.google.com/sheets/api).
* **Plugin type**: output
* **Load all or nothing**: no
* **Resume supported**: no
* **Cleanup supported**: yes
## Configuration
| name | type | required? | default | description |
| ---- | ---- | ---- | ---- | ----|
| spreadsheet_id | string | required | |
| credentials_file_path | string | required | nil |
| range | string | optional | 'Sheet1:A1' |
| mode | string | optional | 'REPLACE' | 'APPEND' or 'REPLACE' |
| header_line | bool | optional | true | true or false |
## Example
```
out:
type: google_sheets
spreadsheet_id: {{ env.SPREADSHEET_ID }}
credentials_file_path: /path/to/credential_file
mode: REPLACE
header_line: true
```
## Build
```
$ rake
```