Skip to content

Sushmi-pal/movie_recommendation

Repository files navigation

Movie Recommender

With the Movie Recommender app, you can view personalized recommendations based on your favorite categories chosen during registration and previously watched movies.

Features:

  • Recommends the users on the basis of the category of the movies they like which is given to choose during registration.

There is CRUD operations on user, profile and movies. User creation is done by Django default User. In other to change some field which is not on default side, you have to make custom User model. Since here is no any required fields other than default user, default user model is used. Profile and user have the relation of OneToOne Field. Recommended movies is added on recommended movies section based on the viewed movies. And the user who has written the description of a specific movie can only update and delete that movie detail. You can change the password by clicking on forgot password button which is on Login Page.

Installation

  • You should have python, Django installed on your system.
  • Run the command to install all the requirements.
pip install -r requirements.txt
  • Run the command
python3 manage.py makemigrations
python3 manage.py migrate
  • Run the command
python3 manage.py shell

and inside that console write the command

exec(open('category_data.py').read())
  • Finally run the command to run the server.
python3 manage.py runserver

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published