yadoxOriginal post
Flutter Developer
When following the "start with python" mini tutorial (well not 100%, cause I scippe the environment setup and installed the latest appwrite sdk, which is 5.x if I remember correctly). I get this exception:
HTTPSConnectionPool(host='10.10.100.99', port=443): Max retries exceeded with url: /v1/databases (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:997)')))
Is this caused by using latest appwrite sdk instead of appwrite==4.1.0 ? Or how can I bypass this SSL issue?
Summary
Developers running "start with python" tutorial encountered an SSL issue while using the latest Appwrite SDK (5.x). The error message suggests a problem with the SSL certificate verification. The issue potentially arose from skipping the tutorial's environment setup. To bypass the SSL problem, developers can disable certificate verification in the HTTP connection. This can be done by setting `verify=False` when making HTTP requests with the SDK.