Blog
google
Google Cloud Functions with Python 3.7
Thu, 26 July 2018Google's just brought out beta support for Python 3 in their Cloud Functions offering. Getting started is easy.First, make sure you've got your requirements.txt file with the following:requests==2.19.0 numpy flask Then, your main.py file should look like this:from flask import Flask app = Flask(... read more
Fixed: urllib2 Google App Engine - HTTPException: Invalid and/or missing SSL certificate for URL
Thu, 12 July 2018Using urllib2 on App Engine generates an exception locally using dev_appserver.py when connecting to SOME SSL enabled URL's.The exception looks like this:Traceback (most recent call last): File "my_py_file.py", line 20, in example_method response_data = urllib2.urlopen(request, timeout=30, cont... read more