Metadata-Version: 2.1
Name: py4Soundex
Version: 0.0.1
Summary: Soundex Python Library
Home-page: https://github.com/luthfi118/py4Soundex
Author: Mgs. M. Luthfi Ramadhan
Author-email: luthfir96@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# py4Soundex

Soundex Python Library

## Getting Started

This project is simply implementation of Soundex algorithm in python programming language.

### Prerequisites

This Project Has No Prerequisites


### Installing

The easiest way to install py4Soundex is using pip

```
pip install py4Soundex
```

### Usage
It's only a function named Soundex. It takes string as argument and return soundex code
```
from py4Soundex.code import Soundex
print(Soundex('Smith'))
print(Soundex('Smyth'))
# Both Yield Same Code
```


