So I am trying to bundle a python 3.7 script that uses requests into a py2app application. When I attempt to run the application, it throws this error:
requests.exceptions.SSLError: HTTPSConnectionPool(host='www.instagram.com', port=443):
Max retries exceeded with url: /p/CCGpCZ0FAib/ (Caused by SSLError("Can't connect to HTTPS URL
because the SSL module is not available."))
I can see this is caused because it cannot locate the SSL module, I have already attempted to add 'requests' into both the 'includes' section and 'packages' section in the setup.py. I have also tried directly add 'SSL' to both the 'includes' and 'packages' sections and that did not work either. Any Ideas on how to fix this?