sheetfu
sheetfu copied to clipboard
Python library to interact with Google Sheets V4 API
In this [documentation](https://github.com/socialpoint-labs/sheetfu/blob/master/documentation/table.rst#get_index) It seems like I don't need anything to get the index of an item. But in [code](https://github.com/socialpoint-labs/sheetfu/blob/d3a2ee5f37de5fb26e09542ee0c637a28004777c/sheetfu/modules/table.py#L281) you actually need the `field_name` argument. Documentation is wrong? Or...
A known issue with Google API is Http() objects being not thread safe (https://github.com/googleapis/google-api-python-client/blob/main/docs/thread_safety.md). For my usecase (a multithreaded chat bot interacting with Spreadsheets heavily) it appears as various SSL...
Is it possible to run a function/macro on a google sheet from Sheetfu API?
I noticed that setting a cell value (or background colour, or note, etc.) always results in an entry in `table.batches`, even if you are setting the value to the initial...
Currently there appears to be no way to set a `#N/A` value. This is a very important value that is commonly used. It would be useful to be able to...
- https://github.com/socialpoint-labs/sheetfu/blob/master/documentation/usage.rst#get_max_row ~~get_max_row~~ get_max_rows - https://github.com/socialpoint-labs/sheetfu/blob/master/documentation/usage.rst#get_max_column ~~get_max_column~~ get_max_columns
https://github.com/socialpoint-labs/sheetfu/blob/master/documentation/usage.rst#get_range_from_a1 ``` get_max_column() … max_row = sheet.get_max_column() … ``` should be ``` max_column = sheet.get_max_column() ```