# ⏳ Simple Countdown Timer (Python CLI)
This is a simple command-line countdown timer written in Python.
The user can input minutes and seconds, and the timer counts down until it reaches zero.
---
## 🧰 Features
- Set custom countdown time (minutes and seconds)
- Clean, single-line terminal display
- Beep sound notification when the timer ends
- Lightweight and easy to use (no external libraries)
---
## 🖥️ Usage
### ✅ Run the script:
```bash
python timer.pyEnter minutes: 1
Enter seconds: 30
When the timer reaches zero, your system will make a beep sound using:
print("\a")If your terminal or OS doesn't support this, you can modify play_alert() to use sound libraries like playsound.
Make sure to ignore virtual environments and Python cache files:
__pycache__/
*.pyc
*.pyo
*.log
venv/
.env/
.DS_Store- Python 3.x
- Works on Windows, macOS, Linux (standard terminal)
No external libraries needed.