SSML

This is a description


Keywords
ssml, python, google, alexa, assistant, ssml-builder
License
GPL-3.0
Install
pip install SSML==1.0.8

Documentation

Project description

SSML is a SSML builder for Google Assistant and Amazon Alexa.

Installing

$ pip install -U SSML

Usage

For Google Assistant

  1. Create an object
from SSML import Google


g = Google()
  1. Add text to the speech
g.add_text("Hello World")
  1. Build the SSML speech
print(g.speak())

For Amazon Alexa

Yet to come...

Links