This is the final project for the Food Recipes Database. This Recipe Management System is a Python application using PostgreSQL and Tkinter, allowing users to manage recipes, including adding new recipes, deleting existing ones, and updating recipe details
- Python 3.x
- Tkinter library
- psycopg2 library
- PostgreSQL database
-
Install Python 3.x from the official website or in terminal
-
Install Tkinter library using pip:
pip install tk
-
Install psycopg2 library using pip:
pip install psycopg2
-
Install PostgreSQL database from the official website or in terminal
-
Create a PostgreSQL database named "recipe" with a table named "recipes" having columns "id", "title", "cooking_time", "instructions", and "cooking_hardware".
-
Download the ZIP file of the project from GitHub: https://github.com/LawunnKhaing/Recipe_manager
-
Extract the ZIP file, and navigate to the project directory in cmd/terminal.
-
Run the application:
python app.py