Python 3.x SSL:证书失败

Python 3.x SSL:证书失败,python-3.x,cookies,request,Python 3.x,Cookies,Request,我一直在尝试向web发送GET请求,但出现以下错误: requests.exceptions.SSLError: HTTPSConnectionPool(host='courses.fit.hcmus.edu.vn', port=443): Max retries exceeded with url: /course/view.php?id=2040 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY

我一直在尝试向web发送GET请求,但出现以下错误:

requests.exceptions.SSLError: HTTPSConnectionPool(host='courses.fit.hcmus.edu.vn', port=443): Max retries exceeded with url: /course/view.php?id=2040 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)')))
这是我到目前为止的代码:

import requests
session = requests.get('https://courses.fit.hcmus.edu.vn/course/view.php?id=2040')

print(session.text)
这个网站需要帐户和密码,但我已经尝试使用cookies,但我得到相同的错误,。。。 我已经尝试升级pip或一些熟悉的东西,但没有成功

谢谢, 田粪