retrosheet-ts
v0.2.0-0
Published
Thanks to : [Retrosheet by theApache64](https://github.com/theapache64/retrosheet)
Downloads
31
Maintainers
Readme
RetroSheet-TS
Thanks to : Retrosheet by theApache64
Install
npm i retrosheet-ts
Usage ⌨️
Fetch Google Sheet Data.
Get Spreadsheet ID
Get Spreadsheet ID from spreadsheet url.
Get Data
import { fetchRetrosheetData } from 'retrosheet-ts';
const response = await fetchRetrosheetData("<Spreadsheet ID>", { sheetName: "notess", query: "select * limit 2" })
[
{
"created_at": "26/08/2023 17:37:06",
"title": "Hello",
"description": "Description"
},
{
"created_at": "26/08/2023 17:37:28",
"title": "Yogesh",
"description": "Description"
}
]
Write Data to Google Sheet.
Follow steps 1 - 4 from here
Get Form ID
Get form id Form URL
Write data
import { writeRetrosheetData } from 'retrosheet-ts';
const request = {
'Title': "test title",
'Description': 'test Description'
}
writeRetrosheetData("<FORM_ID>", request)
Note: Keys of request must be the same as Form Field name.