Gspread возвращает ошибки при попытке запустить мой код. Это говорит:
Traceback (most recent call last):
File "C:/Users/alex/.PyCharmCE2018.3/config/scratches/gspread test.py", line 6, in <module>
creds = ServiceAccountCredentials.from_json_keyfile_name('credentials.json', scope)
File "C:\Users\alex\PycharmProjects\opencvtest\venv\lib\site-packages\oauth2client\service_account.py", line 219, in from_json_keyfile_name
with open(filename, 'r') as file_obj:
FileNotFoundError: [Errno 2] No such file or directory: 'credentials.json'
Я пытался связываться с учетными данными .json, но, похоже, это правильно с листами Google.
import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = ['https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name('credentials.json', scope)
client = gspread.authorize(creds)
sheet = client.open("RFID-2019-2020-Attendance").sheet1
print(sheet.row_values())
Любая помощь будет принята с благодарностью.