A simple lightweight note taking app with GUI made with Python and MySQL database.
Clone the project
pip install pymysql
or
python -m pip install pymysql
CREATE DATABASE note_taking_app;
USE note_taking_app;
CREATE TABLE notes (
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255) NOT NULL,
content TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
