Metadata-Version: 2.1
Name: misspell
Version: 0.5
Summary: Some functions that introduce random typographical errors in provided text.
Home-page: https://github.com/MrMebelMan/misspell
Author: Vladyslav Burzakovskyy
Author-email: mutex-lock@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# misspell
Some functions that introduce random typographical errors in provided text.

make one typo:
```python
from misspell import make_typo

make_typo('test')  # tedt, tesw etc...
```

make typos in 50% of the characters:

```python
from misspell import make_typos
make_typos('Hello, world!', percent=50)  # 'Jell8, woelf!', 'Hdllo, sorld!' etc...


