Giter VIP home page Giter VIP logo

iamrajatroy / movys Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 100.87 MB

Movie recommendation app using content-based filtering. Data provided by TMDb.

License: Apache License 2.0

Jupyter Notebook 66.29% Dockerfile 0.15% Python 0.71% Java 13.52% HTML 7.01% JavaScript 1.23% TypeScript 10.86% CSS 0.23%
tmbd themoviedb java spring-boot spring-mvc angular python3 python recommender-system content-based-filtering

movys's Introduction

movys

Movie recommendation app using content-based filtering. Data provided by TMDb.

Demo

movys demo

About

This is a movie recommender application. It recommends similar movies to the movies you like.

  • The recommendation service is a content based filtering service which reads a movie description and finds other movies with matching description.
  • This recommendation services (Flask App) is served in a docker container and connected with the Spring Boot App (Java) based backend.
  • The UI is developed with Angular and is coupled with the Spring Boot Application using Spring Thymeleaf.
  • All movies and user-liked movies are stored with the help of in-memory db served by Apache Derby.

Data used in this application is downloaded from https://www.themoviedb.org/ using TMDb Developer API.

Get the data

  • curl

curl --location --request GET 'http://api.themoviedb.org/3/discover/movie?api_key=ADD_YOUR_API_KEY_HERE'

  • Python client
import requests

url = "http://api.themoviedb.org/3/discover/movie?api_key=ADD_YOUR_API_KEY_HERE"

payload = {}
headers= {}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
  • Java client
OkHttpClient client = new OkHttpClient().newBuilder().build();
Request request = new Request.Builder()
  .url("http://api.themoviedb.org/3/discover/movie?api_key=ADD_YOUR_API_KEY_HERE")
  .method("GET", null)
  .build();
Response response = client.newCall(request).execute();

Architecture

Credits

Inspired by the work of Dean Sublett

Read the blog - https://towardsdatascience.com/beginners-recommendation-systems-with-python-ee1b08d2efb6

movys's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.