summaryrefslogtreecommitdiff
path: root/check/commands/imagehash/query.py
blob: cf5c2d43a322abbb0a91f85a1d05c20a5afb4a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Search the database for an image
"""

import click

# from app.models.sql_factory import load_sql_datasets

@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...')