strsim 0.6.0

Implementations of string similarity metrics. Includes Hamming, Levenshtein, Damerau-Levenshtein, Jaro, and Jaro-Winkler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from __future__ import print_function

import os
from subprocess import call
import sys

try:
    call(['docker', 'run', '-it', '--rm', '-v', os.getcwd() + ':/source',
          'jimmycuadra/rust:1.14.0'])
except OSError:
    print('Please install Docker.', file=sys.stderr)