Metadata-Version: 2.4
Name: pyspeller
Version: 1.0.0
Summary: Библиотека для проверки орфографии с использованием API Яндекс Спеллер. Обертка Python для Яндекс.Спеллер.
Project-URL: Repository, https://github.com/austnv/pyspeller
Project-URL: Issues, https://github.com/austnv/pyspeller/issues
Project-URL: Homepage, https://github.com/austnv/pyspeller
Project-URL: Changelog, https://github.com/austnv/pyspeller/releases
Project-URL: Documentation, https://github.com/austnv/pyspeller/wiki
Author-email: Алексей Устинов <lesin2798@mail.ru>
License-Expression: MIT
License-File: LICENSE
Keywords: api,speller,yandex
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# pyspeller

Библиотека для проверки орфографии с использованием [API Яндекс Спеллер][я]. Обертка Python для [Яндекс.Спеллер][я].

## Установка

```bash
pip install pyspeller
```

```bash
pip install git+https://github.com/austnv/pyspeller.git
```

## Использование

```python
from pyspeller import *

result = check_text('масква', 'ru', 'plain', ['IGNORE_URLS', 'IGNORE_DIGITS'])
print(result)

result = check_texts(['синхрафазатрон', 'олексей'])
print(result)
```

## Документация

- [Страница][1] для демонстрации работы метода `check_text`.
- [Документация][3] для метода `check_text`.
- [Страница][2] для демонстрации работы метода `check_texts`.
- [Документация][4] для метода `check_texts`.
- [Условия использования][5] сервиса «API Яндекс.Спеллер»


## Контакты

- [GitVerse][6]
- [GitHub][11]
- [Email][7]
- [Telegram][8]

## Лицензия

[The MIT License (MIT)][9]



[я]: https://yandex.ru/dev/speller/
[1]: https://speller.yandex.net/services/spellservice?op=checkText
[2]: https://speller.yandex.net/services/spellservice?op=checkTexts
[3]: https://yandex.ru/dev/speller/doc/dg/reference/checkText-docpage/
[4]: https://yandex.ru/dev/speller/doc/dg/reference/checkTexts-docpage/
[5]: https://yandex.ru/legal/speller_api/
[6]: https://gitverse.ru/ustinov
[7]: mailto:lesin2798@mail.ru?subject=pyspeller
[8]: https://t.me/austnv?text=pyspeller
[9]: LICENSE
[10]: https://ustinov.mit-license.org/
[11]: https://github.com/austnv