This file is indexed.

/usr/share/doc/python-enchant/README.txt is in python-enchant 1.6.6-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
pyenchant:  Python bindings for the Enchant spellchecker
========================================================

This package provides a set of Python language bindings for the Enchant
spellchecking library.  For more information, visit the project website:

    http://packages.python.org/pyenchant/


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 use it?
----------------

For Windows users, there is an executable installer program which can be
used to install the software with a minimum of effort.  Other users will
need to install from source.

Once the software is installed, python's on-line help facilities can
get you started.  Launch python and issue the following commands:

    >>> import enchant
    >>> help(enchant)


Installing with the Windows Installer
-------------------------------------

Download and run the windows installer program.  It will automatically
detect your python installation and set up pyenchant accordingly.

The windows installer version provides a pre-compiled enchant library
as well as several supporting libraries.  Several commonly-used
dictionaries are installed into:

    <YOUR_PYTHON_ROOT>\Lib\site-packages\enchant\share\enchant\myspell.

Additional language dictionaries are available from the OpenOffice.org
project, and are available at:

    http://wiki.services.openoffice.org/wiki/Dictionaries
    
Download the appropriate zip for for the language of interest, and
unzip its contents into the "myspell" directory mentioned above.


Installing from Source
----------------------

First, you must already have the enchant library installed on our system.
You will also need access to a C compiler.

This package is distributed using the Python 'setuptools' framework.
If you have the necessary prerequisites, all that should be required to
install is to execute the following command in the current directory:

    python setup.py install



Who is responsible for all this?
--------------------------------

The credit for Enchant itself goes to Dom Lachowicz.  Find out more details
on the Enchant website listed above.  Full marks to Dom for producing such
a high-quality library.

The glue to pull Enchant into Python via ctypes was written by me, Ryan Kelly.
I needed a decent spellchecker for another project I am working on, and
all the solutions turned up by Google were either extremely non-portable
(e.g. opening a pipe to ispell) or had completely disappeared from the web
(what happened to SnakeSpell?)  It was also a great excuse to teach myself
about SWIG, ctypes, and even a little bit of the Python/C API.

Bugs can be filed on the project's github page:

    http://github.com/rfk/pyenchant/issues

Comments, suggestions, other feedback can be directed to the pyenchant-users
mailing list:

    pyenchant-users@googlegroups.com