The code I am trying to use is something like
r = requests.get(url)
That did work perfectly fine until a few weeks ago. Now I get an error somewhat like this:
HTTPSConnectionPool(host='...', port=443): Max retries exceeded with url: /v3/folders/... (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))
It doesn't really matter what url I'm trying to request.
I know that similar questions have been asked on here. But usually the answer is to just add "verify=False" while doing the request. While that does work, I don't really want to add that every time I am using an old code or some code of my colleagues. Does anybody have an idea how to fix that? I read somewhere that it might have to do with setting date and time on my computer but I didn't change anything there.