You cannot post messages because only members can post, and you are not currently a member.
Description:
General queries and discussion about PyEnchant, a spellchecking library for Python.
|
|
|
finding base word of any word
|
| |
I am trying extract base word from a word ( query on wolves should return wolf). Is there any mechanism implemented in enchant so that I can extract the base word? Sushil
|
|
Add a personal word list to program
|
| |
I tried to add a personal word list as a dictionary to my program like this: pwl = enchant.request_pwl_dict("mywo rds.txt") but after running my program mywords.txt file become to an empty file and my editor didn't do any correction at all. I try it with English language (That I have it's dictionary in my enchant installation) and it works fine.... more »
|
|
Can't install pyenchant on Windows 7 with Python 2.7 (both 64-bit)
|
| |
Today I downloaded the install program pyenchant-1.6.5.win32.exe. When I ran it I got the message: "No Python installation found in the registry" But there is a Python installation there. I've been using Python every day for a couple of years and windows knows how to run files with a .py extension.... more »
|
|
Broker.DictWithPWL how to
|
| |
Hi,
unfortunately PyEnchant prefers ispell of aspell. But the Germany
dictionary of myspell is broken.
These two schemes do work
B= enchant.Broker()
B.set_ordering('de','aspell,my spell,ispell')
Lexikon= B.request_dict("de")
but now I cannot specify a separately managed personal list. At least... more »
|
|
OS-X binary
|
| |
Hi, I saw a thread about this earlier, but only jsut subscribed to the group, so I'm starting a new one. First -- it's great that you provide OS-X binaries -- it's a great service, they can be a pain to build on your own. However, the trick with OS-X binaries is that there are WAY too many different ways that Python can be installed on OS-X. IN gneral the mac... more »
|
|
PyEnchant and multiprocessing
|
| |
Hi,
I would like to know if somebody encountered any issue while using
PyEnchant with the python multiprocessing library or if it's even
possible that such issue might arise.
I ask because I recently hunted down an intermittent bug in my code
that seemed to come from PyEnchant.
This statement "d = enchant.Dict('en-US')" sometimes blocked (i.e.,... more »
|
|
win32_data_files() and libenchant*.dll
|
| |
Hello,
I'm pakaging a python app in Windows 7 using py2exe (latest version)
and Python2.7
This is how I haldle pyenchant in my 'setup.py':
try:
import enchant
except ImportError:
pass
else:
from enchant import utils as enchantutils
DATA_FILES += enchantutils.win32_data_files( )... more »
|
|
WinError on Win 7 on importing enchant
|
| |
Hi all,
I am trying to get pyenchant to run on Win 7. The installation exe
(pyenchant-1.6.5.win32.exe) runs without any errors, but when
importing enchant I get the following error:
Python 2.6.6 (r266:84297, Aug 24 2010, 18:13:38) [MSC v.1500 64 bit
(AMD64)] on
win32
Type "help", "copyright", "credits" or "license" for more information.... more »
|
|
Sphinx + PyEnchant integration
|
| |
I have started work on a Sphinx extension to check the spelling of documents using PyEnchant. Version 0.1 is available for beta testing from my web site ([link]) and can be installed via "pip install sphinxcontrib-spelling". I would appreciate any feedback you have, either on this list or via direct email.... more »
|
|
|