Iwark / spreadsheet

Google Go (golang) library for reading and writing spreadsheet files on Google Docs.
MIT License
382 stars 53 forks source link

Support optional sheet creation at spreadsheet creation time #32

Closed dkuebric closed 5 years ago

dkuebric commented 5 years ago

Adds ability to create spreadsheets with multiple named sheets in them, and test to cover.

ex: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/create?apix_params=%7B%22resource%22%3A%7B%22properties%22%3A%7B%22title%22%3A%22fooby%22%7D%2C%22sheets%22%3A%5B%7B%22properties%22%3A%7B%22title%22%3A%22test%201%22%7D%7D%2C%7B%22properties%22%3A%7B%22title%22%3A%22test%202%22%7D%7D%5D%7D%7D

Iwark commented 5 years ago

Very nice! Thank you :)