This Python library allows you to fetch detailed descriptions of words from www.wooordhunt.ru.
To install the library, use pip:
pip install wooordhunt_parserThis library fetches the detailed description of a word by providing a URL or the word itself.
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())MIT License