Questions tagged [fuzzywuzzy]

FuzzyWuzzy stands as a Python tool designed for executing fuzzy string matching operations.

Performing a fuzzy search within a PySpark dataframe

I am working with a csv file that has more than 96 million rows and seven columns. I need to perform a fuzzy search on one of the columns to find records with the highest similarity to a given input string. The file is being managed by spark, and I have lo ...