Finder is a voice-activated desktop assistant built using Python. It can respond to your queries, search Wikipedia, open websites, tell you the time and date, send emails, and more β all using voice commands.
- Voice interaction using speech recognition
- Text-to-speech responses with
pyttsx3 - Wikipedia integration
- Web browser control (YouTube, Google, Instagram, etc.)
- Tells the current time, date, and whether itβs a leap year
- Sends emails via Gmail (with authentication)
- Personalized greetings
- Basic conversation ability
- The assistant greets you based on the time of day.
- Listens for your voice command.
- Executes the command β from telling the time to sending an email or searching Wikipedia.
Install required Python packages:
pip install speechrecognition wikipedia pyttsx3 pyaudio
pip install pipwin
pipwin install pyaudio- speech_recognition β for converting voice to text
- pyttsx3 β for text-to-speech
- wikipedia β for fetching info from Wikipedia
- webbrowser β to open websites
- datetime β to fetch current time/date
- smtplib β to send emails via Gmail
- os & random β for optional desktop control or randomness
- Clone the repository
git clone https://github.com/yourusername/Finder-The-AI.git cd Finder-The-AI - Run the script:
python finder.py
- Start speaking! Try commands like:
- "Tell me the time"
- "Search Wikipedia for Artificial Intelligence"
- "Open YouTube"
- "Send email to [recipient]"
- Ensure your microphone is enabled and accessible by Python.
- You can personalize Finder-The-AI with your own greetings or functionality.
Feel free to fork this repository, enhance the assistantβs abilities, or contribute new features via pull requests.