alirezamika / autoscraper

A Smart, Automatic, Fast and Lightweight Web Scraper for Python
MIT License
6.24k stars 654 forks source link

replace fuzzywuzzy with difflib #36

Closed maxbachmann closed 3 years ago

maxbachmann commented 3 years ago

When using the slower version of FuzzyWuzzy it is using difflib internally, so there is not really a need to add a GPL licensed dependency for this. (When better performance is required rapidfuzz is a faster alternative to Fuzzywuzzy, thats MIT Licensed aswell)

alirezamika commented 3 years ago

Thank you.