Source code for credsweeper.ml_model.features.word_in_postamble

import numpy as np

from credsweeper.common.constants import ML_HUNK
from credsweeper.credentials.candidate import Candidate
from credsweeper.ml_model.features.word_in import WordIn


[docs] class WordInPostamble(WordIn): """Feature is true if line contains at least one word from predefined list."""
[docs] def extract(self, candidate: Candidate) -> np.ndarray: """Returns true if any words in a part of line after value""" postamble_end = len(candidate.line_data_list[0].line) \ if len(candidate.line_data_list[0].line) < candidate.line_data_list[0].value_end + ML_HUNK \ else candidate.line_data_list[0].value_end + ML_HUNK postamble = candidate.line_data_list[0].line[candidate.line_data_list[0].value_end:postamble_end].strip() return self.word_in_(postamble.lower()) if postamble else np.array([self.zero])