Metadata-Version: 2.1
Name: wooordhunt-parser
Version: 0.2.0
Summary: 
Author: Sustavov Maksim
Author-email: maksim.sustavov@edgecenter.ru
Requires-Python: >=3.12,<4.0
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)
Requires-Dist: ruff (>=0.8.6,<0.9.0)
Requires-Dist: setuptools (>=75.8.0,<76.0.0)
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 parser_wooordHunt
```

## Usage

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

### Example:

```python
import asyncio
from word 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
