A collection of small Python utility scripts for learning and daily tasks.
- alarm.py → Simple alarm/timer utility.
- file_handle.py → File operations (read, write, copy, move, delete).
- find_path.py → Search for files or directories by name/pattern.
- todo_with_db.py → Basic todo app with database storage.
- Python 3.8+
- Standard Python libraries (no extra installs for most scripts).
git clone https://github.com/imaheshaher/python_scripts.git
cd python_scripts
Run any script with:
python script_name.py
python alarm.py --time 07:30 --message "Standup meeting"
python file_handle.py --copy src.txt dest.txt
python file_handle.py --move src.txt ./backup/
python find_path.py --name notes.txt
python todo_with_db.py add "Buy groceries"
python todo_with_db.py list
- Fork this repo
- Create a branch
- Commit your changes
- Open a Pull Request