Metadata-Version: 2.1
Name: abbrey
Version: 0.0.1
Summary: Abbreviation decoder
Author: pdd
Author-email: dungphamdang99@gmail.com
License: MIT
Keywords: abbreviation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

### Abbreivation decoder
It's not really smart, but extremely simple.
Example:
```
from abbrey import AbbrDecoder

decoder = AbbrDecoder()

input_string = "He is a good pm"
print(decoder.decode_sentence(input_string))
```
Output:
```
He is a good project manager
```
