From 96d7114fa7d281a9f0735af3cc7086379dbfb1d1 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Fri, 5 Feb 2021 01:11:03 +0100 Subject: [PATCH] lazy load fuzzy only when required --- src/documents/matching.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/documents/matching.py b/src/documents/matching.py index 21102bc98..edbbdc1b8 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -1,7 +1,6 @@ import logging import re -from fuzzywuzzy import fuzz from documents.models import MatchingModel, Correspondent, DocumentType, Tag @@ -123,6 +122,8 @@ def matches(matching_model, document): return bool(match) elif matching_model.matching_algorithm == MatchingModel.MATCH_FUZZY: + from fuzzywuzzy import fuzz + match = re.sub(r'[^\w\s]', '', matching_model.match) text = re.sub(r'[^\w\s]', '', document_content) if matching_model.is_insensitive: