Registry / data / soundex

soundex

JSON →
library1.1.3pypypi✓ verified 85d ago

Soundex algorithm implementation for English and Indian languages. Version 1.1.3. Stable, low release cadence.

pip install soundex
INSTALL
IMPORT
SIG · SOUNDEX
S
soundex
datapythonv1.1.3
Install
4.7s avg
Import
Disk
17MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.1.3 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 19.6MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 4.7s · import 0.000s · 20MB
17MB installed
● package 17MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Soundex
from soundex import Soundex
Use lowercase module name.

Create a Soundex instance and call soundex() on a word.

from soundex import Soundex s = Soundex() print(s.soundex('Washington')) # Output: W252 print(s.soundex('Deus')) # Output: D200
Debug
Known issues
gotchaThe module name is all lowercase 'soundex', not 'Soundex'. Import with from soundex import Soundex.
fix
Use 'from soundex import Soundex' or 'import soundex'.
affects: all
gotchaThe library uses uppercase 'Soundex' for the class, but the function version 'soundex' is also available if imported differently.
fix
Check documentation: the class-based API is preferred.
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'soundex'
Package not installed or wrong import casing.
fix
Run 'pip install soundex', then import using 'from soundex import Soundex'.
ImportError: cannot import name 'soundex' from 'soundex'
Attempting to import 'soundex' instead of 'Soundex' (class).
fix
Use 'from soundex import Soundex' and instantiate with Soundex().
Upgrade
Version history
1.1.3latest on PyPI · released Jun 1, 2014
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
OpenAI (training)
1
Resources
soundex — pip install soundex · libregistry