elixir_google_spreadsheets icon indicating copy to clipboard operation
elixir_google_spreadsheets copied to clipboard

Elixir library to read and write data of Google Spreadsheets.

Results 9 elixir_google_spreadsheets issues
Sort by recently updated
recently updated
newest added

Not 100% sure this comes from the library, but I have this warning: ``` 12:30:20.580 [warning] Description: 'Authenticity is not established by certificate path validation' Reason: 'Option {verify, verify_peer} and...

I have a situation in which users sign in to my app using their Google accounts. I then need to be able to read their Google Sheets. It is not...

Would you be interested in implementing a feature to delete (many) rows? Eventually I'd also need to delete cols. And/or resize dimensions of a sheet/grid if that's possible at all....

Currently all spreadsheet process and Goth auth token are tracked by [GSS.Registry](https://github.com/Voronchuk/elixir_google_spreadsheets/blob/48237715152a6e6673cc7700a939e70f739d46b6/lib/elixir_google_spreadsheets/registry.ex) module. Put spreadsheet process tracking into a separate Elixir native [Registry](https://hexdocs.pm/elixir/Registry.html#content) instance. Scope out `GSS.Auth` module from a...

enhancement

Currently both API and GenServer callbacks are defined under the single [GSS.Spreadsheet](https://github.com/Voronchuk/elixir_google_spreadsheets/blob/master/lib/elixir_google_spreadsheets/spreadsheet.ex) module. We should leave API layer in `GSS.Spreadsheet` and transfer callbacks into a separate `GSS.Spreadsheet.Server` module. Update the...

enhancement

update get_request_params function Keyword.merge(config, default) -> Keyword.merge(default, config)

I want to contribute to this library (in particular, I want to have more options to authenticate with goth). So I'm trying to run the tests, but the spreadsheet configured...

Sometimes we compute ranges (for eg. see below, chunking to read a great number of rows), and one range ends up containing only one row. In this case it is...