<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>subdist</name>
<shortdesc>Substring edit distance</shortdesc>
<description>A C extension that uses a modified version of the Levenshtein distance algorithm
to calculate fuzzy matches for substrings.

All strings used by the subdist module must be Unicode strings.

New in version 0.2
-------------------

The get_score function returns match score [0.0, 1.0] of needle in haystack
based on substring distance

Example
------------------

**fuzzy substring distance for "bdb" in "aaa bbb ccc"** ::

  import subdist
  
  needle = u"bdb"
  haystack = u"aaa bbb ccc"
  distance = subdist.substring(needle, haystack) # 1</description>
<download-page>http://ginstrom.com/code/subdist-0.2.1.tar.gz</download-page>
<homepage rdf:resource="http://www.ginstrom.com/code/subdist.html" />
<maintainer><foaf:Person><foaf:name>Ryan Ginstrom</foaf:name>
<foaf:mbox_sha1sum>ffffb3e02726f4b1501b71fe302a12d693ea966b</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.2.1</revision></Version></release>
</Project></rdf:RDF>