Мне нужно, чтобы из текстового документа текст вставлялся в Google Sheets построчно, начиная с A3 и вниз по столбцу.
import gspread
import json
import pyperclip
import config
from oauth2client.client import SignedJwtAssertionCredentials
varss = pyperclip.paste()
with open(config.text, 'a', encoding='utf-8') as f: f.write(str(varss))
scope = ['https://spreadsheets.google.com/feeds']
json_key = json.load(open('creds.json'))
creds = SignedJwtAssertionCredentials(json_key['client_email'], json_key['private_key'].encode(), scope)
gc = gspread.service_account(filename='creds.json')
sh = gc.open("ADSS")
w = open("texts.txt")
for line in w:
worksheet = sh.worksheet("1ss")
worksheet.update_acell("A3", str(line))
1. Текстовый документ, из которого берём текст
2. Как нужно добавлять в Google Sheets: