This file is indexed.

/usr/lib/python2.7/dist-packages/Whoosh-2.5.7.egg-info/PKG-INFO is in python-whoosh 2.5.7-3.

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
Metadata-Version: 1.1
Name: Whoosh
Version: 2.5.7
Summary: Fast, pure-Python full text indexing, search, and spell checking library.
Home-page: http://bitbucket.org/mchaput/whoosh
Author: Matt Chaput
Author-email: matt@whoosh.ca
License: Two-clause BSD license
Description: About Whoosh
        ============
        
        Whoosh is a fast, featureful full-text indexing and searching library
        implemented in pure Python. Programmers can use it to easily add search
        functionality to their applications and websites. Every part of how Whoosh
        works can be extended or replaced to meet your needs exactly.
        
        Some of Whoosh's features include:
        
        * Pythonic API.
        * Pure-Python. No compilation or binary packages needed, no mysterious crashes.
        * Fielded indexing and search.
        * Fast indexing and retrieval -- faster than any other pure-Python, scoring,
          full-text search solution I know of.
        * Pluggable scoring algorithm (including BM25F), text analysis, storage,
          posting format, etc.
        * Powerful query language.
        * Pure Python spell-checker (as far as I know, the only one). 
        
        Whoosh might be useful in the following circumstances:
        
        * Anywhere a pure-Python solution is desirable to avoid having to build/compile
          native libraries (or force users to build/compile them).
        * As a research platform (at least for programmers that find Python easier to
          read and work with than Java ;)
        * When an easy-to-use Pythonic interface is more important to you than raw
          speed. 
        
        Whoosh was created and is maintained by Matt Chaput. It was originally created
        for use in the online help system of Side Effects Software's 3D animation
        software Houdini. Side Effects Software Inc. graciously agreed to open-source
        the code.
        
        This software is licensed under the terms of the simplified BSD (A.K.A. "two
        clause" or "FreeBSD") license. See LICENSE.txt for information.
        
        Installing Whoosh
        =================
        
        If you have ``setuptools`` or ``pip`` installed, you can use ``easy_install``
        or ``pip`` to download and install Whoosh automatically::
        
            $ easy_install Whoosh
        
            or
        
            $ pip install Whoosh
        
        Learning more
        =============
        
        * Read the online documentation at http://packages.python.org/Whoosh/
        
        * Join the Whoosh mailing list at http://groups.google.com/group/whoosh
        
        * File bug reports and view the Whoosh wiki at
          http://bitbucket.org/mchaput/whoosh/
        
        Getting the source
        ==================
        
        Download source releases from PyPI at http://pypi.python.org/pypi/Whoosh/
        
        You can check out the latest version of the source code using Mercurial::
        
            hg clone http://bitbucket.org/mchaput/whoosh
        
        
Keywords: index search text spell
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Indexing