backend/app/search/services/hints.py

9 lines
235 B
Python
Raw Normal View History

2022-10-21 23:37:26 +03:00
from search.models import Product, Category
def get_hints(content: str) -> str:
category = 'Unknown'
if content in list(map(lambda product: product.name, Product.objects.all())):
category = 'Name'
return category