Re: [racket-users] Racket function to get data from a Google Sheet?

2017-08-31 Thread Greg Hendershott
Sometimes authentication/authorization is more time and effort than the thing itself. In this case: https://developers.google.com/sheets/api/guides/authorizing Looks like if the sheet is public, it's pretty easy (?), just get an API key and supply that. Otherwise looks like you'll need

Re: [racket-users] Racket function to get data from a Google Sheet?

2017-08-31 Thread Jason Hemann
It may also be the case that there is an existing Google sheets plugin that automates the part that you are currently doing manually. Best, JBH On Aug 31, 2017 9:31 AM, "David Storrs" wrote: > There's an API that you could implement: https://developers.google.com/ >

Re: [racket-users] Racket function to get data from a Google Sheet?

2017-08-31 Thread David Storrs
There's an API that you could implement: https://developers.google.com/sheets/api/guides/concepts On Wed, Aug 30, 2017 at 2:22 PM, Mitchell Wand wrote: > Has anybody written a Racket function to extract the data directly from a > Google Sheet? > > I know I can export the

[racket-users] Racket function to get data from a Google Sheet?

2017-08-30 Thread Mitchell Wand
Has anybody written a Racket function to extract the data directly from a Google Sheet? I know I can export the Google sheet as a csv, and then use read-csv-file, but I'd like to automate the export step. --Mitch -- You received this message because you are subscribed to the Google Groups