I\'m using python-request on Google App Engine and it\'s not working as expected for HTTPS. Let\'s see an example:
import requests
requests.get(\'https://www
There is now a better solution than changing your requests version. As suggested in the official docs you can monkey patch requests to play nicely with Google App Engine.
First install requests-toolbelt:
pip install -t lib requests-toolbelt
Then in your main.py file (or equivalent):
import requests_toolbelt.adapters.appengine
requests_toolbelt.adapters.appengine.monkeypatch()