1rocketdude
1rocketdude
my turn with the short stick...everything working until 2023-06-22. Coincidental with upgrade from python 3.11.3 to 3.11.4. `HTTPSConnectionPool(host='api.etrade.com', port=443): Max retries exceeded with url: /oauth/request_token (Caused by SSLError(SSLError(1, '[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE]...
I confirmed that python 3.10 and 3.11 with their associated crypto libraries causes the problem. python3.9 and it's libraries do not experience the SSL problem. Next step is to document...
python 3.9, 3.10, and 3.11 all use the same library versions in my code, so I'm at a loss why python3.9 works while 3.10 and 3.11 do NOT. pyetrade |...
confirmed. Thanks everyone for your investigative work. It is indeed the urllib3 package. I downgrade to urllib3 1.26.16, which is the latest version of the 1.xx series. Now everything works...
yes - downgrade to the latest 1.26 version - I think 1.26.18 and it magically works again. python version doesn’t matter. > On Nov 21, 2023, at 10:29 PM, Nisar...