diff options
author | Santhosh Thottingal <santhosh.thottingal@gmail.com> | 2009-07-19 18:35:19 +0530 |
---|---|---|
committer | Santhosh Thottingal <santhosh.thottingal@gmail.com> | 2009-07-19 18:35:19 +0530 |
commit | 603a8668a79b67e28900ef9c5bfba4889ac43092 (patch) | |
tree | e39d42b17f8c67e419b58c65f7eba489333a7bf9 /soundex/__init__.py | |
parent | c8a17ee264a269a59651936b34a960f4d40a9074 (diff) | |
download | Rachana.git-603a8668a79b67e28900ef9c5bfba4889ac43092.tar.gz Rachana.git-603a8668a79b67e28900ef9c5bfba4889ac43092.tar.xz Rachana.git-603a8668a79b67e28900ef9c5bfba4889ac43092.zip |
Indic Soundex Algorithm Implementation
Diffstat (limited to 'soundex/__init__.py')
-rw-r--r-- | soundex/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/soundex/__init__.py b/soundex/__init__.py new file mode 100644 index 0000000..a3917bb --- /dev/null +++ b/soundex/__init__.py @@ -0,0 +1,4 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +import soundex + |