https://github.com/noeljoan/birthday-reminder
Windows 11 Birthday Reminder written in Python with SQLite and notifications.
https://github.com/noeljoan/birthday-reminder
birthday customtkinter python reminder sqlite
Last synced: about 2 months ago
JSON representation
Windows 11 Birthday Reminder written in Python with SQLite and notifications.
- Host: GitHub
- URL: https://github.com/noeljoan/birthday-reminder
- Owner: noeljoan
- Created: 2026-06-04T20:12:39.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2026-06-05T15:43:17.000Z (about 2 months ago)
- Last Synced: 2026-06-05T18:11:53.513Z (about 2 months ago)
- Topics: birthday, customtkinter, python, reminder, sqlite
- Language: Python
- Homepage: https://github.com/noeljoan/birthday-reminder
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Birthday Reminder
A simple Python desktop application that reminds you of upcoming birthdays.
## Screenshot

## Features
- Stores birthdays in a SQLite database
- Uses CustomTkinter for the graphical user interface
- Sends Windows desktop notifications for birthday alerts
## Project Structure
```
birthday_reminder/
├── main.py # Entry point
├── database.py # SQLite database handling
├── gui.py # CustomTkinter GUI
├── notifications.py # Windows notification handling
├── requirements.txt # Python dependencies
└── birthday_reminder.db # SQLite database file
```
## Getting Started
1. Clone the repository
2. Create a virtual environment
3. Install dependencies from `requirements.txt`
4. Run `python main.py`
---