This file is indexed.

/usr/lib/python3/dist-packages/jellyfish-0.5.6.egg-info/PKG-INFO is in python3-jellyfish 0.5.6-3build2.

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
Metadata-Version: 1.1
Name: jellyfish
Version: 0.5.6
Summary: a library for doing approximate and phonetic matching of strings.
Home-page: http://github.com/jamesturk/jellyfish
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: =========
        jellyfish
        =========
        
        .. image:: https://travis-ci.org/jamesturk/jellyfish.svg?branch=master
            :target: https://travis-ci.org/jamesturk/jellyfish
        
        .. image:: https://coveralls.io/repos/jamesturk/jellyfish/badge.png?branch=master
            :target: https://coveralls.io/r/jamesturk/jellyfish
        
        .. image:: https://img.shields.io/pypi/v/jellyfish.svg
            :target: https://pypi.python.org/pypi/jellyfish
        
        .. image:: https://readthedocs.org/projects/jellyfish/badge/?version=latest
            :target: https://readthedocs.org/projects/jellyfish/?badge=latest
            :alt: Documentation Status
        
        .. image:: https://ci.appveyor.com/api/projects/status/t5o03rqcusxhhe41/branch/master?svg=true
            :target: https://ci.appveyor.com/project/jamesturk/jellyfish/
        
        Jellyfish is a python library for doing approximate and phonetic matching of strings.
        
        Written by James Turk <james.p.turk@gmail.com> and Michael Stephens.
        
        See https://github.com/jamesturk/jellyfish/graphs/contributors for contributors.
        
        Source is available at http://github.com/jamesturk/jellyfish.
        
        Included Algorithms
        ===================
        
        String comparison:
        
          * Levenshtein Distance
          * Damerau-Levenshtein Distance
          * Jaro Distance
          * Jaro-Winkler Distance
          * Match Rating Approach Comparison
          * Hamming Distance
        
        Phonetic encoding:
        
          * American Soundex
          * Metaphone
          * NYSIIS (New York State Identification and Intelligence System)
          * Match Rating Codex
        
        Example Usage
        =============
        
        >>> import jellyfish
        >>> jellyfish.levenshtein_distance(u'jellyfish', u'smellyfish')
        2
        >>> jellyfish.jaro_distance(u'jellyfish', u'smellyfish')
        0.89629629629629637
        >>> jellyfish.damerau_levenshtein_distance(u'jellyfish', u'jellyfihs')
        1
        
        >>> jellyfish.metaphone(u'Jellyfish')
        'JLFX'
        >>> jellyfish.soundex(u'Jellyfish')
        'J412'
        >>> jellyfish.nysiis(u'Jellyfish')
        'JALYF'
        >>> jellyfish.match_rating_codex(u'Jellyfish')
        'JLLFSH'
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Text Processing :: Linguistic