معرفی شرکت ها


EnchantX-0.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An extension of PyEnchant Wrapper
ویژگی مقدار
سیستم عامل -
نام فایل EnchantX-0.1.1
نام EnchantX
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده AkashD
ایمیل نویسنده akashdave555@gmail.com
آدرس صفحه اصلی https://github.com/akashdve/enchantx
آدرس اینترنتی https://pypi.org/project/EnchantX/
مجوز -
EnchantX ======================================================== An extension of `pyenchant` package to serve better. What is EnchantX? ---------------- This package is an extension of [**PyEnchant**](https://pyenchant.github.io/pyenchant/) (which provides a set of Python language bindings for the Enchant spellchecking library). This package is extended to provide most appropriate suggestions based on given text. EnchantX Visualizer is available on the EnchantX website: http://enchantx.live/ What is Enchant? ---------------- Enchant is used to check the spelling of words and suggest corrections for words that are miss-spelled. It can use many popular spellchecking packages to perform this task, including ispell, aspell and MySpell. It is quite flexible at handling multiple dictionaries and multiple languages. More information is available on the Enchant website: http://www.abisource.com/enchant/ How do I install it? ------------------- Install the package using pip:: $ pip install enchantx This package will also install its dependency of pyenchant package which bundle a pre-built copy of the underlying enchant library. Users on other platforms will need to install "enchant" using their system package manager (brew on macOS). Once the software is installed, python's on-line help facilities can get you started. Launch python and issue the following commands: >>> import enchantx >>> help(enchantx) **Note:** EnchantX requires binary file "GoogleNews-vectors-negative300.bin" to work correctly. By default, It will try to search for the file in the following locations: 1. "/home/<$user>/.enchantx/" 2. Inside current working directory It is recommended to provide the path of binary file while creating the XDict Object. How do I use it? --------------- >>> import enchantx >>> spellchecker = enchantx.XDict("/home/ubuntu/GoogleNews-vectors-negative300.bin") >>> spellchecker.check("wofl") False >>> spellchecker.suggest("wofl") ['Wolf', 'wolf', 'wool', 'FOFL', 'ROFL'] >>> example = "quanfiction movie" >>> spellchecker.check("movie") True >>> spellchecker.check("quanfiction") False >>> spellchecker.suggest("quanfiction") ['qualification', 'quantification', 'nonfiction'] >>> spellchecker.smart_suggest(word="quanfiction", next_word="movie") ['nonfiction', 'qualification', 'quantification']


نیازمندی

مقدار نام
>=3.0.1 pyenchant


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl EnchantX-0.1.1:

    pip install EnchantX-0.1.1.whl


نصب پکیج tar.gz EnchantX-0.1.1:

    pip install EnchantX-0.1.1.tar.gz