Skip to content

Sidharth-Prabhu/Note-Taking-App-GUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Note Taking App with Python and MySQL database

A simple lightweight note taking app with GUI made with Python and MySQL database.

  • Uses Tkinter for UI.

  • Uses Pymysql for integration of MySQL database.

    App Screenshot

Install the required Libraries.

Clone the project

pip install pymysql

or

python -m pip install pymysql

Initialize the database

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
);

Authors

About

A lightweight note taking app with Python and MySQL database. (With GUI)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages