This Python-based Time Alert System provides hourly time notifications using text-to-speech technology. A pre-built .exe
file is also available for users who do not have Python installed.
- Announces the current hour with a voice alert.
- Automatically adjusts for AM/PM format.
- Designed to run continuously in the background.
- No Python installation required (via provided
.exe
file).
- Python Version: Python 3.6 or higher
- Modules:
time
(built-in)pyttsx3
(install viapip install pyttsx3
)
- Download the provided
.exe
file and run it directly.
- Clone or download this repository.
- Install the required Python module:
pip install pyttsx3
- Run the script:
python time_alert.py
- Download the pre-built
.exe
file here.
(https://github.com/AnubhavChaturvedi-GitHub/Time-Alert-Bot/blob/main/dist/timeSpeaker.exe) - Double-click the
.exe
file to start the program. - It will run in the background and announce the time every hour.
speak(text)
:- Initializes the
pyttsx3
engine to convert text to speech.
- Initializes the
- Main Logic:
- Continuously checks the time.
- Announces the hour when minutes and seconds are
00:00
.
Time 9 AM
Time 10 AM
Time 11 PM
"Time 9 AM"
"Time 10 AM"
"Time 11 PM"
Click the link below to download the .exe
file for direct use:
Download Time Alert Executable
- Option to customize alert intervals (e.g., half-hourly).
- Allow users to set specific time zones or customize voice settings.