GoogleSheets.jl
GoogleSheets.jl copied to clipboard
Julia package for working with Google Sheets
client = sheets_client(AUTH_SCOPE_READONLY) produces ``` client PyError ($(Expr(:escape, :(ccall(#= /home/tim/.julia/packages/PyCall/BD546/src/pyfncall.jl:43 =# @pysym(:PyObject_Call), PyPtr, (PyPtr, PyPtr, PyPtr), o, pyargsptr, kw))))) TypeError("print_exception() missing 2 required positional arguments: 'value' and 'tb'") [email protected]:62[inlined] [email protected]:66[inlined]...
`#PyError ($(Expr(:escape, :(ccall(#= C:\Users\userName\.julia\packages\PyCall\ilqDX\src\pyfncall.jl:43 =# @pysym(:PyObject_Call), PyPtr, (PyPtr, PyPtr, PyPtr), o, pyargsptr, kw))))) #RefreshError('invalid_grant: Token has been expired or revoked.', {'error': 'invalid_grant', 'error_description': 'Token has been expired or revoked.'})` After...
https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#celldata looking at CellData like "note" With GoogleSheets I can write a note on a cell a few ways using batch_update! I haven't found a way to read a note...
I'm new to GoogleSheets and I just figured out that the `start_index` and `end_index` fields of the `range:CellIndexRange1D` parameter to the `delete_rows!` function are zero-based, and `end_index` is exclusive. I...
When running ```julia using GoogleSheets client = sheets_client(AUTH_SCOPE_READONLY) ``` I got an exception, that ``` ERROR: Credentials file not found: C:\Users\username\.julia/config/google_sheets/credentials.json ``` I've updated the Readme with the correct path,...
hi @chipkent I'm using your package on a daily basis, it's great - thanks for it! I wanted to check in with you about maintainance. tests are turned off currently,...