app.backend.analyzing.substring_match package
Submodules
app.backend.analyzing.substring_match.find_similarity_ratio module
The main module finding similarity ratio between two strings.
- app.backend.analyzing.substring_match.find_similarity_ratio.find_similarity_ratio(f_string: str, s_string: str) float
Take two strings and find similarity between them using Rabin fingerprint and winnowing by Stanford.
- Args:
f_string: first string.
s_string: second string.
- Returns:
float: the similarity ratio between two strings.
Module contents
The module finding similarity ratio between two strings.