Skip to content

Commit

Permalink
v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
archiewood authored and carlopi committed Nov 4, 2024
1 parent 9beb234 commit 799867d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions extensions/gsheets/description.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
extension:
name: gsheets
description: Read and write Google Sheets using SQL
version: 0.0.1
version: 0.0.2
language: C++
build: cmake
license: MIT
excluded_platforms: "windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads"
excluded_platforms: "windows_amd64_rtools"
maintainers:
- archiewood

repo:
github: evidence-dev/duckdb_gsheets
ref: 7f7c6e2f85edd9ad9c2f16f2075818627fca8405
ref: 01bdf2872b78af1b9234792766392840fc4a91b7

docs:
hello_world: |
-- Authenticate with Google Account in the browser (easiest)
CREATE SECRET (TYPE gsheet, PROVIDER oauth);
CREATE SECRET (TYPE gsheet);
-- OR create a secret with your Google API access token (boring, see extension docs)
CREATE SECRET (TYPE gsheet, TOKEN '<your_token>');
CREATE SECRET (
TYPE gsheet,
PROVIDER access_token,
TOKEN '<your_token>'
);
-- Read a spreadsheet by full URL
FROM read_gsheet('https://docs.google.com/spreadsheets/d/11QdEasMWbETbFVxry-SsD8jVcdYIT1zBQszcF84MdE8/edit');
Expand Down

0 comments on commit 799867d

Please sign in to comment.