Theo Ephraim

Results 174 comments of Theo Ephraim

Looks like there is a different request specifically for this - https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#autoresizedimensionsrequest Shouldn't be too hard to implement, but I'm not sure when I'll be able to get to it....

That all sounds quite odd and not something I've seen before... Question for you - are you writing many rows concurrently or is it always just one at a time?...

Using the cell-based methods, you can get both the raw value (the underlying number) and the "formatted value" (the string version with formatting rules applied). The row-based API uses the...

currently insertDimension just inserts empty rows/columns. There is not functionality to insert a row at a specific index like I can see you are trying to do. This would be...

yeah you can delete populated rows via the row based api, but directly using the deleteDimension call is not yet implemented. Feel free to open a PR - it should...

Hi @AxelTerizaki In general, there is no way to return text that includes italics, like "this _kind_ of text". The best we can do is return all the info necessary...

yeah unfortunately this is a limit of using the [values based api methods](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values) which the row-based calls depend on. Would take some thought to figure out how to better support...

At the moment, the row-based API does not have access to any more advanced styling / formatting capabilities available. You'll have to use the cell-based methods to do it. Also,...

+1 - this is pretty much required for the `output_filename_only` option to be usable at all. For now I'll be parsing the full URL and inserting my transformations that way,...

Sorry but that’s really outside the scope of this project… But it sounds like you need to route the google requests through a proxy. This is very common in scraping...