MCPcopy Create free account
hub / github.com/CScorza/IntelOSINT / _norm_text

Method _norm_text

IntelOSINT.py:14966–14967  ·  view source on GitHub ↗
(v)

Source from the content-addressed store, hash-verified

14964 noisy_labels = {"onlyfans", "about", "home", "login", "signin", "sign-in", "join", "register", "account", "support", "terms", "privacy", "policy", "help", "explore", "posts", "error", "notfound"}
14965
14966 def _norm_text(v):
14967 return re.sub(r"\s+", " ", str(v or "").strip().lower())
14968
14969 def _clean_name(v):
14970 return re.sub(r"[^a-z0-9]", "", _norm_text(v).replace("@", ""))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected