""" Search the database for an image """ import click from app.models.sql_factory import search_by_phash, add_phash @click.command() @click.option('-i', '--input', 'opt_fn', required=True, help="File to search") @click.pass_context def cli(ctx, opt_fn): """ Search the database for an image """ print('Searching for a file...')