Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 477 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 477 Bytes

This application uses tkinter for the GUI, speech_recognition for capturing speech, deep_translator for translation, and pyttsx3 for text-to-speech functionality. import tkinter as tk from tkinter import messagebox from deep_translator import GoogleTranslator import speech_recognition as sr import pyttsx3

tkinter: For creating the GUI. messagebox: To show error messages in the GUI. GoogleTranslator: For translating text. speech_recognition: To recognize spoken language.