Metadata-Version: 2.1
Name: ssml_builder
Version: 1.0.3
Summary: SSML Builder for Alexa
Home-page: https://github.com/Reverseblade/ssml-builder
Author: Yuta Fujisawa
Author-email: 
License: Free
Description: # ssml-builder
        
        ## Installation
        
        ```
        pip install ssml-builder
        ```
        
        ## Usage
        
        1. Create a Speech object
        
        ```
        from ssml_builder.core import Speech
        speech = Speech()
        ```
        
        2. Add text and tags
        
        ```
        # add text
        speech.say("hello world")
        # add pause tag
        speech.pause("10s")
        # add prosody tag
        speech.prosody("x-fast")
        ```
        
        3. Output ssml with \<speak\> wrapper
        ```
        speech.speak()
        ```
        
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
