The Check-in Application is a Python program that allows you to manage guest check-ins for events or parties. It provides a graphical user interface (GUI) for checking in guests, adding new guests to the list, and displaying the list of guests. Features
Check in guests by entering their first name and last name.
Add new guests with their first name, last name, phone number, and email address.
View and display the list of guests with their details.
Prevents empty fields and provides user guidance for actions.
Installation:
Ensure you have Python installed on your system.
Install required dependencies using pip:
(...console
pip install tk
...)
Execute the checkin.py script to launch the Check-in Application.
(...console
python checkin.py
...)
Using the Application:
Enter guest information in the provided fields.
Click the "Check-in" button to check in a guest.
Click the "Add Guest" button to add a new guest to the list.
Click the "Display Guest List" button to view the list of guests.
Saving Guest Information:
The application automatically saves guest information in a CSV file (guests.csv) in the same directory.
Python 3.10.12
Tkinter library (usually included with Python)
David Houzé
This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to customize this README template with your application's specific details, author information, and license terms.