platypush/platypush/plugins/assistant/google/pushtotalk.py

36 lines
982 B
Python
Raw Normal View History

2018-06-23 01:00:43 +02:00
"""
.. moduleauthor:: Fabio Manganiello <blacklight86@gmail.com>
"""
from platypush.context import get_backend
from platypush.plugins import Plugin, action
class AssistantGooglePushtotalkPlugin(Plugin):
2018-06-23 01:00:43 +02:00
"""
Plugin for the Google assistant pushtotalk API. It acts as a wrapper to
programmatically control a
:mod:`platypush.backend.assistant.google.pushtotalk` backend.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@action
def start_conversation(self):
2018-06-23 01:00:43 +02:00
"""
Programmatically start a conversation with the assistant
"""
assistant = get_backend('assistant.google.pushtotalk')
assistant.start_conversation()
@action
def stop_conversation(self):
2018-06-23 01:00:43 +02:00
"""
Programmatically stop a running conversation with the assistant
"""
assistant = get_backend('assistant.google.pushtotalk')
assistant.stop_conversation()
# vim:sw=4:ts=4:et: