The Movie Management Program is a PyQt5-based desktop application designed to manage and organize information about movies, directors, and user accounts to be used by admins. It provides functionalities for adding, editing, deleting, and viewing movie details, director details, and user account information. The program utilizes an SQLite database to store and manage data.
-
Log In
-
Sign Up
-
Reset Password
-
Delete Account
-
Log In page is the starting page which has Log In, Sign Up, Reset Password and Delete Account areas by connecting the SQLite. create_tables method creates neccessary database called MovieDatabase tables for USERS, DIRECTORS and MOVIES. There are various methods attached buttons which have their explanations in the code. All methods have exception handling not to break down the program.
Admin panel lets the admin do various types of actions on Users, Movies and Directors such as View, Add, Update and Delete. Admin Panel's methods have their own explanations in the code. All methods have exception handling not to break down the program.
- View All Users: Displays a comprehensive list of all registered users.
- Add Users: Enables the addition of new user accounts.
- Update Users: Allows modification of existing user information.
- Delete Users: Facilitates the removal of user accounts after authentication.
- View All Directors: Presents a list of all registered directors.
- Add Directors: Allows the addition of new director profiles.
- Update Directors: Permits updates to existing director details.
- Delete Directors: Enables the deletion of director profiles from the database.
- View All Movies: Displays a table containing information on all movies in the database.
- Add Movies: Facilitates the addition of new movie entries.
- Update Movies: Allows modifications to existing movie details.
- Delete Movies: Permits the removal of movies from the database
- Python
- PyQt5
- SQLite3
- Clone the repository:
- Navigate to the project directory:
- cd movieLibrary
- Install the required dependencies:
- pip install -r requirements.txt
- Run the application:
- python main.py
- Launch the application by running
main.py
. - Sign up for a new account or log in with an existing account.
- Use the respective buttons in the AdminPanel to manage movies, directors, and user accounts.