mirror of
https://github.com/codecrafters-io/build-your-own-x
synced 2026-07-03 01:09:25 +00:00
16 lines
473 B
Markdown
16 lines
473 B
Markdown
# Build Your Own Alexa Assistant
|
|
|
|
This project shows how to build a basic Alexa-like voice assistant using Python. It listens to voice commands, answers questions, performs searches, tells the time, and can be extended easily.
|
|
|
|
## Features
|
|
- Voice recognition (SpeechRecognition)
|
|
- Text-to-Speech (pyttsx3)
|
|
- Online search functionality
|
|
- Time and date responses
|
|
- Custom command support
|
|
- Extendable skills system
|
|
|
|
## Installation
|
|
```bash
|
|
pip install -r requirements.txt
|
|
|