An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Birthday Reminder

A simple Python desktop application that reminds you of upcoming birthdays.

## Screenshot

![Dashboard](screenshot.png)

## 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`

---