flask-google-actions

Client library for Actions on Google using python and flask


License
MIT
Install
pip install flask-google-actions==1.0.2

Documentation

Program Google Assistant Apps with Python & Flask

This client library makes it easy to create Actions for the Google Assistant.

This library uses the google-actions-on-python and flask to make building applications for google assistant fast and easy.

PyPI

Installation

pip install flask-google-actions

Basic Usage

from googleactions import Intent
from flaskactions import api

@api.intent(Intent.MAIN)
def hook_main(app_request):
    return 'Hello world!'
    
if __name__ == "__main__":
    api.start(username='username', password='password')