Blog


functions

Google Cloud Functions with Python 3.7
Thu, 26 July 2018

Google'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

functions