Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.37 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.37 KB

Voice Search

This project is a web application designed to provide voice search functionality for searching C programs. By utilizing Google's Speech-to-Text API, users can navigate and explore C programs using voice commands, enhancing productivity and saving time.

Home Screen

Home Page

Results after voice search:

c program to add 2 numbers Results

High level overview

Overview

Features

  • Voice Search: Users can search for C programs using voice commands.
  • Real-time Speed Search: The application provides real-time search functionality to quickly find relevant C programs.
  • Productivity Enhancement: By enabling voice-based navigation, this tool aims to maximize productivity for developers and programmers.

How to run the app

  1. Clone the repository and cd into the directory
git clone https://github.com/quirrelHK/voice-search.git
  1. Running a virtual environment is recommended, in command prompt:
python -m venv base
base\Scripts\activate.bat
  1. Install the requirements using pip
pip install -r requirements.txt
  1. Run the app
flask --app app run --debug