This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# did they create this test data for you? or did you create it yourself? | |
ROWS_FROM_SHEET = [ | |
{ | |
label: 'Versed Roof', | |
format: 'string', | |
value: 'some value', | |
date: nil, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This script can be executed via bun.sh: https://bun.sh/ | |
* | |
* bun get-2023-songs.ts | |
*/ | |
import fs from "fs"; | |
import axios from "axios"; | |
// auth token can be retrieved by visiting the spotify API docs (linked below) |
OlderNewer