python
from kmatch import KMatcher
matcher = KMatcher()
processed_keywords = []
for keyword in keywords:
processed_keywords.append(matcher.process_text(keyword))
matcher.build_index(processed_keywords)
result = matcher.match(text)
for r in result:
print()