Metadata-Version: 2.3
Name: wooordhunt-parser
Version: 0.4.4
Summary: 
Author: Sustavov Maksim
Author-email: maksim.sustavov@edgecenter.ru
Requires-Python: >=3.12,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
Requires-Dist: httpx (>=0.28.1,<0.29.0)
Requires-Dist: lxml (>=5.3.0,<6.0.0)
Project-URL: Homepage, https://github.com/Maksonik/parser_WooordHunt
Description-Content-Type: text/markdown

[![Maintainability](https://api.codeclimate.com/v1/badges/3d3393fea44c81694cf8/maintainability)](https://codeclimate.com/github/Maksonik/parser_WooordHunt/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/3d3393fea44c81694cf8/test_coverage)](https://codeclimate.com/github/Maksonik/parser_WooordHunt/test_coverage)
# Parser WooordHunt

This Python library allows you to fetch detailed descriptions of words from www.wooordhunt.ru.

## Installation

To install the library, use `pip`:

```bash
pip install wooordhunt_parser
```

## Usage

This library fetches the detailed description of a word by providing a URL or the word itself. 

### Example:

```python
import asyncio
from wooordhunt_parser import get_word

# Word URL (e.g., www.wooordhunt.ru/word/get or just 'get')
WORD = "get"

async def main():
    word_description = await get_word(WORD)
    print(word_description)

asyncio.run(main())
```

## License

MIT License
