An open API service indexing awesome lists of open source software.

https://github.com/rhitajyotim411/quote-getter

A web app that selects a quote by category and reads it aloud using text-to-speech.
https://github.com/rhitajyotim411/quote-getter

flask pandas text-to-speech

Last synced: about 2 months ago
JSON representation

A web app that selects a quote by category and reads it aloud using text-to-speech.

Awesome Lists containing this project

README

          

# Introduction

The webapp selects a quote based on category from a dataset of quotes and then the quote is spoken out loud (text-to-speech).

# Access the dataset

The dataset **quotes.csv** is zipped inside **quotes.zip** which the program internally unzips to read the data. To manually read the data the user needs to unzip it manually and extract the **.csv** file.

# Python dependencies

* Flask ```$ pip install Flask```
* pandas ```$ pip install pandas```
* gTTS ```$ pip install gTTS```

# Run the webapp

To run the webapp execute the following command inside the application folder: -

```
$ flask run
```