gspread Questions

1

Solved

Task: I have a dataframe and I would like to append that data to a Google Sheet. The sheet has exactly the same columns as the DF and has exisiting data which I don't want to overwrite, but just ad...
Coda asked 22/1, 2020 at 13:27

4

Solved

I have created a nested list in python which looks like my_list = [[a,b],[c,d],[e,f],[g,h].....] What I want to do is insert this list as a batch so that each element gets inserted in a new row ...
Katerine asked 21/4, 2018 at 18:46

1

Solved

Is it possible with gspread or other Python-based access to Google Spreadsheets to insert an image into a spreadsheet? Also, is it possible to make rich text cells (e.g., bold, italic, different f...
Scorcher asked 14/9, 2015 at 17:28

3

Solved

I am attempting to build a REST API in Django for a Google Spreadsheet with Gspread, I'm running into a lot of issues (so if anyone happens to have a full example lying around, feel free to share.....
Schnapps asked 16/1, 2018 at 15:22

1

here's my existing connection code, which works fine json_key = json.load(open('path/to/json.js')) scope = ['https://spreadsheets.google.com/feeds'] credentials = SignedJwtAssertionCredentials(js...
Coco asked 8/11, 2015 at 17:13

2

Solved

My sheet is named 'doc_name', and it has two worksheets, 'sheet1' and 'sheet2'. but, i can only write data to the worksheet labeled 'sheet1'? is this a limitation or am i doing something wrong? t...
Leventhal asked 6/11, 2015 at 15:59

0

I am working to get google sheets downloaded on my EC2 linux server.I shared the google sheet with email id from credentials json file. I am using gspread, to open the sheet using open_by_key(file[...

2

Solved

I'm working on a program that generates a dynamic google spreadsheet report. Sometimes when I create a new row (with data) in google spreadsheet using gspread append_row function it doesn't work a...
Hagiology asked 25/11, 2014 at 11:50

1

I have a Json object which needed to be uploaded to the Google Spreadsheet. I have searched and read various resources but could not find the solution. Is there a way to upload object or csv from l...
Boom asked 19/10, 2018 at 6:30

1

I'm looking for a way to read a cell's formatting from a Google sheet in Python, specifically, its background colour. Two popular packages I've found to be able to read a sheet are gspread (fork) ...

3

Solved

Using developers.google.com we created api user and downloaded credentials as json file. Now On my macbook gspread authentication is working fine while using credentials.json. when moved same conf...
Offshore asked 13/3, 2018 at 14:18

2

Solved

I am trying to use the gspread Python package to import CSV data into a Google sheet from the command line. Using this guide, I got everything working, and was able to both read and write to cell...
Offenbach asked 24/4, 2017 at 18:25

4

Ok I'm following along with the Become A Technical Marketer course and I'm trying to learn how to manage Google Spreadsheets with GSpread. I've followed along with the documentation at http://gspre...

2

Solved

I'm currently making a Discord-bot that connects to a Google-spreadsheet (gspread). But after I've been running it for a while it starts to hand out errors and it can't connect to my gspread anymor...
Bowes asked 28/8, 2017 at 8:2

3

I would like to update a particular tab in a Google Sheets document using a pandas data frame. I have reviewed the documentation on GitHub and readthedocs.io and am able to successfully update a ce...
Torquay asked 13/3, 2017 at 23:44

3

Solved

I have a google drive folder with hundreds of workbooks. I want to cycle through the list and update data. For some reason, gspread can only open certain workbooks but not others. I only recently h...
Togo asked 22/2, 2017 at 4:40

1

I am new to python. I was just trying to create a google worksheet using gspread. I read about using google api's from here. I downloaded credentials from Google Developers Console which is a file ...
Elbowroom asked 29/4, 2016 at 10:53

5

Solved

I am able to get the feed from the spreadsheet and worksheet ID. I want to capture the data from each cell. i.e, I am able to get the feed from the worksheet. Now I need to get data(string type?)...
Dolores asked 4/3, 2010 at 6:32

2

Solved

I currently run a daemon thread that grabs all cell values, calculates if there's a change, and then writes out dependent cells in a loop, ie: def f(): while not event.is_set(): update() event....
Baty asked 6/7, 2016 at 13:54

1

Solved

I'm struggling to get access to a google spreadsheet with python 2.7 using gspread. Here's what I have so far: import gspread from oauth2client.service_account import ServiceAccountCredentials ...
Smilacaceous asked 8/6, 2016 at 18:31

2

I'm trying to make an application that automatically updates a Google Plus spreadsheet. In order to do this I had to set up gspread, which also requires pyOpenSSL in order to work. Without it, it t...
Footstone asked 5/2, 2016 at 19:49

1

Solved

I wrote a script to connect to a Google spreadsheet and load data into a postgresql database from it. I already created a service account and obtained the necessary credentials for it in a .json fo...
Superhighway asked 8/1, 2016 at 17:11

1

The error is in gspread authentication. Got oauth2client.client.CryptoUnavailableError: No crypto library available I have installed both pyOpenSSL and pycrypto. With the Crypto folder obtained aft...

1

Solved

I'm updating my spreadsheets using gspread, the process takes about an hour, i have about 200 spreadsheets. It seems about 30 minutes into the updating the sheets, the connection drops. Is there a ...
Beta asked 9/5, 2014 at 15:50

2

Solved

By using GSpread I have a range of cell's returned from a google spreadsheet that has all its elements something like this: <Cell R1C1 'Sandero'> I know how to get from here the cell valu...
Husk asked 19/12, 2012 at 9:48

© 2022 - 2024 — McMap. All rights reserved.