Metadata-Version: 2.1
Name: AVMSpeechMath
Version: 0.0.5
Summary: Perform voice operations in Spanish with Python.
Home-page: https://github.com/avmmodules/AVMSpeechMath
Author: AlejandroV
Author-email: avmmodules@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/avmmodules/AVMSpeechMath/issues
Description: [![Contributors][contributors-shield]][contributors-url]
        [![Forks][forks-shield]][forks-url]
        [![Stargazers][stars-shield]][stars-url]
        [![Issues][issues-shield]][issues-url]
        [![MIT License][license-shield]][license-url]
        
        <!-- PROJECT LOGO -->
        <br />
        <p align="center">
          <a href="https://github.com/avmmodules/AVMSpeechMath">
            <img src="https://raw.githubusercontent.com/avmmodules/AVMSpeechMath/main/img/logo.png" alt="Logo" width="300">
          </a>
        
          <h3 align="center">AVMSpeechMath</h3>
        
          <p align="center">
            Perform voice operations in Spanish with Python!
            <br />
            <a href="https://github.com/avmmodules/AVMSpeechMath"><strong>Explore the docs »</strong></a>
            <br />
            <br />
            <a href="https://github.com/avmmodules/AVMSpeechMath/issues">Report Bug</a>
            ·
            <a href="https://github.com/avmmodules/AVMSpeechMath/issues">Request Feature</a>
          </p>
        </p>
        
        <!-- TABLE OF CONTENTS -->
        <details open="open">
          <summary>Table of Contents</summary>
          <ol>
            <li>
              <a href="#about-the-project">About The Project</a>
            </li>
            <li>
              <a href="#getting-started">Getting Started</a>
              <ul>
                <li><a href="#prerequisites">Prerequisites</a></li>
                <li><a href="#installation">Installation</a></li>
              </ul>
            </li>
            <li><a href="#usage">Usage</a></li>
            <li><a href="#roadmap">Roadmap</a></li>
            <li><a href="#contributing">Contributing</a></li>
            <li><a href="#license">License</a></li>
            <li><a href="#contact">Contact</a></li>
          </ol>
        </details>
        
        <!-- ABOUT THE PROJECT -->
        ## About The Project
        
        [![miniatura][miniatura]](https://pypi.org/project/AVMSpeechMath/)
        
        If you want to watch the explanation in video, see the [link](https://youtu.be/uWqnGSVdPPg)
        
        <!-- GETTING STARTED -->
        ## Getting Started
        
        ### Prerequisites
        
        You need to make sure you have installed the following modules.
        * speech_recognition
          ```s
          pip install SpeechRecognition
          ```
        
        * pyttsx3
          ```s
          pip install pyttsx3
          ```
        
        ### Installation
        
        ```python
        pip install AVMSpeechMath
        ```
        
        <!-- USAGE EXAMPLES -->
        ## Usage
        
        * Example 1
            ```python
            import AVMSpeechMath as sm
        
            res = sm.getResult("cuanto es dos mas dos") # without accents
            print(res) # prints 'El resultado es 4'
            ```
        
        * Example 2
            ```python
            import AVMSpeechMath as sm
        
            res = sm.getResult("cuanto es cinco por 4000") # without accents
            print(res) # prints 'El resultado es 20,000'
            ```
        
        * Example 3
            ```python
            import AVMSpeechMath as sm
        
            res = sm.getResult("raiz de cien") # without accents
            print(res) # prints 'El resultado es 10'
            ```
        
        _For more examples, please refer to the [Examples packages](https://github.com/avmmodules/AVMSpeechMath/tree/main/examples)_
        
        <!-- ROADMAP -->
        ## Roadmap
        
        See the [open issues](https://github.com/avmmodules/AVMSpeechMath/issues) for a list of proposed features (and known issues).
        
        <!-- CONTRIBUTING -->
        ## Contributing
        
        Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.
        
        1. Fork the Project
        2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
        3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
        4. Push to the Branch (`git push origin feature/AmazingFeature`)
        5. Open a Pull Request
        
        <!-- LICENSE -->
        ## License
        
        Distributed under the MIT License. See `LICENSE` for more information.
        
        <!-- CONTACT -->
        ## Contact
        
        Youtube: [/avmmodules](https://youtube.com/avmmodules)
        
        Email: avmmodules@gmail.com
        
        <!-- MARKDOWN LINKS & IMAGES -->
        <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
        [contributors-shield]: https://img.shields.io/github/contributors/avmmodules/AVMSpeechMath.svg?style=for-the-badge
        [contributors-url]: https://github.com/avmmodules/AVMSpeechMath/graphs/contributors
        [forks-shield]: https://img.shields.io/github/forks/avmmodules/AVMSpeechMath.svg?style=for-the-badge
        [forks-url]: https://github.com/avmmodules/AVMSpeechMath/network/members
        [stars-shield]: https://img.shields.io/github/stars/avmmodules/AVMSpeechMath.svg?style=for-the-badge
        [stars-url]: https://github.com/avmmodules/AVMSpeechMath/stargazers
        [issues-shield]: https://img.shields.io/github/issues/avmmodules/AVMSpeechMath.svg?style=for-the-badge
        [issues-url]: https://github.com/avmmodules/AVMSpeechMath/issues
        [license-shield]: https://img.shields.io/github/license/avmmodules/AVMSpeechMath.svg?style=for-the-badge
        [license-url]: https://github.com/avmmodules/AVMSpeechMath/blob/main/LICENSE
        [miniatura]: https://raw.githubusercontent.com/avmmodules/AVMSpeechMath/main/img/miniatura.png
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
