Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alarm_Clock_Timer #794

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions Projects/1-Beginner/Alarm_clock-App.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Alarm-clock-Timer
This is a simple Python program that allows the user to set an alarm for a certain amount of time and choose an alarm sound. The user is prompted to enter the number of minutes and seconds to wait and to choose an alarm sound from a list of four options.

Once the countdown timer reaches zero, the selected alarm sound will play, indicating that the time has elapsed. The user can choose from four different alarm sounds.

This program uses the playsound library to play the selected sound file and the time library to keep track of the elapsed time. The program also utilizes escape sequences to clear the terminal and update the countdown timer display.

# Requirements
This program requires the playsound library to be installed. You can install it using pip:
pip install playsound

# Usage
To run the program, simply execute the Python script in your preferred environment or terminal:
python alarm_clock.py

Follow the prompts to set the desired time and alarm sound. The program will then start a countdown timer and play the selected sound once the timer reaches zero.


## Example projects
[Data fair training](https://data-flair.training/blogs/alarm-clock-python/)
[Aditya9764](https://github.com/Aditya9764/Alarm-Clock-Timer)