Python: сбой SSL-сертификата - PullRequest
0 голосов
/ 25 июня 2018

Это мой код:

import gspread
from oauth2client.service_account import ServiceAccountCredentials

scope =['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']    
creds = ServiceAccountCredentials.from_json_keyfile_name('client_secret.json', scope)    
client = gspread.authorize(creds)

sheet = client.open("Test)").sheet1

list_of_hashes = sheet.get_all_records()
print(list_of_hashes)

И вот результат:

raise SSLError(e, request=request)
requests.exceptions.SSLError:
    HTTPSConnectionPool(host='sheets.googleapis.com', port=443):
    Max retries exceeded with url: /v4/spreadsheets/1AXzSsuOZfZpHDv4jgYCgNbpooxhhYpx8HG6Ue3zq88M?includeGridData=false
   (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines',
                                                        'ssl3_get_server_certificate',
                                                        'certificate verify failed')],)",),))
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...