Metadata-Version: 2.1
Name: larousse-api-sunbro
Version: 0.0.5
Summary: UNKNOWN
Home-page: https://github.com/quentin-dev/larousse_api
Author: Quentin Barbarat
Author-email: q.barbarat@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
Requires-Dist: requests (>=2.22.0)
Requires-Dist: bs4 (>=0.0.1)

## Larousse API

### Installation
* `pip install larousse-api-sunbro`

### Usage
```python3
from larousse_api import larousse

# Print the array containing all defintions of "Fromage"
print(larousse.get_definitions("Fromage"))
```

### Why ?
Because the Larousse website doesn't supply an api to look up definitions :(

### How ?
* python3
* requests
* re
* BeautifulSoup

### Possible improvements
* Suggest words if the word is misspelled


