rafi

A tiny route dispatcher for Google Cloud Functions.


Keywords
google-cloud-functions, python
License
MIT
Install
pip install rafi==0.2.1

Documentation

Rafi

A tiny route dispatcher for Google Cloud Functions.

app = rafi.App("demo_app")

@app.route("/hello/<name>")
def index(name):
    return f"hello {name}"

In your Google Cloud Function set Function to execute to app.