Source code for src.web.search

from flask import (
    Blueprint, render_template, request, redirect, url_for
)
from src.data_interface import model
from config import MAX_MOVIES_PER_LISTING

bp = Blueprint("search", __name__)