Tagged Questions
77
votes
11answers
19k views
Good Python modules for fuzzy string comparison?
I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
4
votes
2answers
137 views
difflib on Ruby
Is there a library similar to Python's difflib on Ruby?
Particularly, I need one that has a method similar to difflib.get_close_matches. Any recommendations?
4
votes
3answers
468 views
Canonical URL compare in Python?
Are there any tools to do a URL compare in Python?
For example, if I have http://google.com and google.com/ I'd like to know that they are likely to be the same site.
If I were to construct a rule ...
4
votes
1answer
215 views
Generate “fuzzy” difference of two files in Python
I have an issue for comparing two files. Basically, what I want to do is a UNIX-like diff between two files, for example:
$ diff -u left-file right-file
However my two files contain floats; and ...
4
votes
2answers
1k views
Comparing (similar) images with Python/PIL
I'm trying to calculate the similarity (read: Levenshtein distance) of two images, using Python 2.6 and PIL.
I plan to us
e the python-levenshtein library for fast comparison.
Main question:
What ...
3
votes
2answers
135 views
approximate RegEx in python with TRE: strange unicode behavior
I am trying to use the TRE-library in python to match misspelled input.
It is important, that it does handle utf-8 encoded Strings well.
an example:
The German capital's name is Berlin, but from the ...
2
votes
2answers
137 views
Fuzzy matching a string within a large body of text in Python (url)
I have a list of company names, and I have a list of url's mentioning company names.
The end goal is to look into the url, and find out how many of the companies on the url are in my list.
Example ...
1
vote
3answers
170 views
Is there any implementation of this string matching method in python?
I am trying to work out which entries in my data store are near-duplicates using approximate string matching.
Is there any implementation of the following approach in python, or do i need to try and ...
1
vote
2answers
339 views
Improving a fuzzy matching algorithm - Python
Task: Take two text files and output 100% matches and 75% matches.
Solution:
import difflib
import csv
# Imports and parses the files
fileA = open("H:/comm.names.txt", 'r')
try:
setA = ...