Metadata-Version: 2.1
Name: didyoumean3
Version: 0.1.2
Summary: "Did You Mean?" suggestions for your Python3 projects.
Home-page: https://github.com/PLNech/didyoumean3
Author: PLNech
Author-email: github+didyoumean@plnech.fr
License: GPLv3
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: bs4

# didYouMean

didYouMean is Python module that you can use to correct spelling mistakes. It leverages Google's "Did You Mean" feature.

## Requirements
- Python3
- `beautifulsoup4==4.8.0`

## Usage
```bash
python didYouMean.py "fotball"
> football
python didYouMean.py "football"
> football
```

```python
from didYouMean3 import didYouMean
didYouMean("fotball") # -> football
didYouMean("fotball") # -> football
```

# Credits
Adapted by [@PLNech](https://github.com/PLNech) based on the work by [@bkvirendra](https://github.com/bkvirendra).

# License

DidYouMean3 is [free software under the Gnu GPLv3 license](./LICENSE).

