I would like to add a data frame to the bottom of the spreadsheet using the API of the spreadsheet. Is there any good way?
I want to add a data frame to the bottom of the spreadsheet
code:
import pandas as pd
import gspread
import csv
import json
from oauth2client.service_account import ServiceAccountCredentials
from gspread_dataframe import get_as_dataframe, set_with_dataframe
df = pd.read_csv('a.csv')
SPREADSHEET = 'Target Spreadsheet'
WORKSHEET='Sheet1'
sh=gc.open_by_key (SPREADSHEET)
sh.values_append (WORKSHEET, {'valueInputOption': 'USER_ENTERED'}, {'values': df.values.tolist()})
df contains the target data frame.
Error Contents:
gspread.exception.APIerror: {'code':400, 'message': 'Invalid JSON payload received.Unexpected token.\n.0,13500,50490.0,NaN,NaN,NaN,NaN,\n^', 'status': 'INVALID_ARGUMENT'}
The JSON file on the spreadsheet is also correctly specified and stored
data frame images:
Mr. A, 30 years old man
Mr. B, 25 years old man
I have looked into various things, but I would appreciate it if you could let me know because I could not find any similar errors.
python pandas google-spreadsheet
It's easy with colab.I've never used it directly from the local python, so I can't compare it, but
Disadvantages
from google.colab import auth
auth.authenticate_user()
import gspread
from google.auth import default
credits,_=default()
gc = gspread.authorize (creds)
import pandas aspd
worksheet=gc.open('Title').sheet1
df=pd.DataFrame({'Name':['A', 'B', 'Age':[30,25], 'Gender':['Man', 'Man']})
display(df)
worksheet.append_rows([df.columns.values.tolist()] + df.values.tolist())
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
612 GDB gets version error when attempting to debug with the Presense SDK (IDE)
618 Uncaught (inpromise) Error on Electron: An object could not be cloned
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.