<Google Cloud Platform> SSL moduleがないと言われたとき、

Google Cloud Platformで、いそいそとコードを書いて、ローカルで動くか試した時、、、

 % ~/google-cloud-sdk/bin/dev_appserver.py .

してから、http://localhost:8080にアクセスしたら、エラーメッセージがでた。。。

Sorry, unexpected error: Can't connect to HTTPS URL because the SSL module is not available.

うーん、、って悩んだあと、グーグルした結果、次の1文をapp.yamlに追加すればいいとのこと。

# TODO: List any other App Engine SDK libs you may need here.
libraries:
#- name: jinja2
#  version: latest
- name: ssl               # Added by Neko
  version: latest         # Added by Neko

動いた。 なるへそ。

お世話になったstackoverflow。

stackoverflow.com

あとは、マニュアル。

https://cloud.google.com/appengine/docs/python/tools/using-libraries-python-27

https://cloud.google.com/appengine/docs/python/tools/built-in-libraries-27