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.
- Host: GitHub
- URL: https://github.com/rhitajyotim411/quote-getter
- Owner: rhitajyotim411
- Created: 2022-05-01T20:51:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T14:24:32.000Z (almost 2 years ago)
- Last Synced: 2024-09-07T19:12:12.943Z (almost 2 years ago)
- Topics: flask, pandas, text-to-speech
- Language: HTML
- Homepage:
- Size: 50.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```