This file is indexed.

/usr/share/doc/python-enzyme/README.rst is in python-enzyme 0.4.1-1.

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
Enzyme
======

Enzyme is a Python module to parse video metadata.

.. image:: https://travis-ci.org/Diaoul/enzyme.png?branch=master
    :target: https://travis-ci.org/Diaoul/enzyme


Usage
-----
Parse a MKV file::

    >>> with open('How.I.Met.Your.Mother.S08E21.720p.HDTV.X264-DIMENSION.mkv', 'rb') as f:
    ...    mkv = enzyme.MKV(f)
    ... 
    >>> mkv.info
    <Info [title=None, duration=0:20:56.005000, date=2013-04-15 14:06:50]>
    >>> mkv.video_tracks
    [<VideoTrack [1, 1280x720, V_MPEG4/ISO/AVC, name=None, language=eng]>]
    >>> mkv.audio_tracks
    [<AudioTrack [2, 6 channel(s), 48000Hz, A_AC3, name=None, language=und]>]


License
-------
Apache2