I have fiddle.py
containing 4 lines
import requests
url = "https://randomuser.me/api/"
locations = requests.get(url,verify=False).json()
print locations
When I run it, I kept getting
requests.exceptions.SSLError: [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590)
Try #1
Set verify=False
Run the code, Same Error.
Try #2
Run sudo pip install --upgrade requests
Run the code, same error.
Try #3
Run
sudo pip install --upgrade pip
and
sudo pip install requests[security]
Run the code, different error.
requests.exceptions.SSLError: ("bad handshake: Error([('SSL routines', 'SSL23_GET_SERVER_HELLO', 'sslv3 alert handshake failure')],)",)
How can I debug this?
This can be avoided by using urlib3. disable_warnings method. The above warning that occurred while using verify=False in the request method can be suppressed by using the urllib3. disable_warnings method.
You want to be on OpenSSL 1.0.2 and python 2.7.12. You will probably also want the latest curl.
brew update
brew upgrade openssl
brew upgrade curl
brew upgrade python
python --version # make sure you have python 2.7.12
curl https://randomuser.me/api/ # to verify
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With