find_close_ssd_manufacturer_name#
- impacthpc.src.core.find_close_ssd_manufacturer_name(name: str, threshold: float = 80) FuzzymatchResult | None #
Fuzzymatch search for close SSD manufacturer names from a dataset using fuzzy matching on name, variant and memory size. This method can return zero (None),one (
FuzzymatchSingleResult
) or several matches (FuzzymatchMultipleResult
). Returns the exact name of the SSD, making it suitable to use withSSD
class.- Parameters:
- Returns:
FuzzymatchSingleResult
if a single good match is found.FuzzymatchMultipleResult
if multiple results are above the threshold.None if no suitable match is found.
- Return type:
FuzzymatchResult
| None