python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why do i get TypeError in deleteDimision request using gspread (Python)
I'm trying to add rows and delete columns trough gspread, but i keep getting TypeError: string indices must be integers
Here's the code:
writeTo = client.open_by_key(file['id']).worksheet('Sheet1')
r...
GChaurio
Votes: 0
Answers: 2
gspread returning error requests.exceptions.ConnectionError: ('Connection aborted.', TimeoutError('The write operation timed out'))
I found out about gspread and it is just what I need for my code. I tried testing it on 100+ rows and it was inserting fine, but after I testing it on 100K+ rows, it returning the following error.
Tra...
Ditto Rahmat
Votes: 0
Answers: 0
How to set proper google oauth client scope that don't need any access right of end user data?
I am learning to access Google Sheets using Python (c/q gspread)
my current script is as simple as one from here.
gc = gspread.oauth(
credentials_filename='path/to/the/credentials.json',
autho...
Bino Oetomo
Votes: 0
Answers: 1
gspread search for item within list
I have a Google sheet with lists within the cells.
Ex: A1 contains "1,2,4" and A2 contains "1,5,4,2"
I need to find a way to search if a number is within the list of the cell. I ha...
nikis
Votes: 0
Answers: 1