Personal Event Management System it will help for you track your your family's and friend's marriages ,birthday parties , anniversaries . So that you can't miss the miss the event.User Interface is a command line bases interface using Python.
First Notifiesthe upcoming two days events.
- SHOW EVENTS
- CREATE EVENTS
- UPDATE_EVENT
- DELETE EVENTS
- SEARCH EVENT BY NAME
- SEARCH EVENT BY EVENT TYPE
- UPCOMING EVENTS
- Gifts Suggestion For Your Events
- Exit
- Visual Studio Code
- MySql version 8.0.26
- Python 3.8.10
For this project , In the visual studio first we need to import mysql connector from mysql module and also we have to import datetime module.
A connection with the MySQL server can be established using either the mysql.connector.connect() method.
We need to connect python code to the database
import mysql.connector as db
mydb = db.connect(
host="localhost",
user="root",
db = "EMS"
)
cur = mydb.cursor()
After connected to the database , Using given options, we can select the feature of the event ,so that the function called .In that function the particular query executed in the mysql connector.
And finally we can exit from the system.
This project will help you for the event planning and it will remindes you for the upcoming events.