This file is indexed.

/usr/lib/python3/dist-packages/mido-1.2.7.egg-info/PKG-INFO is in python3-mido 1.2.7-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
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
Metadata-Version: 1.1
Name: mido
Version: 1.2.7
Summary: MIDI Objects for Python
Home-page: https://mido.readthedocs.io/
Author: Ole Martin Bjorndalen
Author-email: ombdalen@gmail.com
License: MIT
Description: Mido - MIDI Objects for Python
        ==============================
        
        Mido is a library for working with MIDI messages and ports. It's
        designed to be as straight forward and Pythonic as possible:
        
        .. code-block:: python
        
           >>> import mido
           >>> msg = mido.Message('note_on', note=60)
           >>> msg.note
           60
           >>> msg.bytes()
           [144, 60, 64]
           >>> msg.copy(channel=2)
           <message note_on channel=2 note=60 velocity=64 time=0>
        
        .. code-block:: python
        
            with mido.open_input('LinnStrument') as inport:
                for msg in inport:
                    print(msg)
        
        .. code-block:: python
        
           port = mido.open_output()
           port.send(msg)
        
        .. code-block:: python
        
            mid = mido.MidiFile('song.mid')
            for msg in mid.play():
                port.send(msg)
        
        
        Full documentation at https://mido.readthedocs.io/
        
        
        Main Features
        -------------
        
        * works in Python 2 and 3.
        
        * convenient message objects.
        
        * supports RtMidi, PortMidi and Pygame. New backends are easy to
          write.
        
        * full support for all 18 messages defined by the MIDI standard.
        
        * standard port API allows all kinds of input and output ports to be
          used interchangeably. New port types can be written by subclassing
          and overriding a few methods.
        
        * includes a reusable MIDI parser.
        
        * full support for MIDI files (read, write, create and play) with
          complete access to every message in the file, including all common
          meta messages.
        
        * can read and write SYX files (binary and plain text).
        
        * implements (somewhat experimental) MIDI over TCP/IP with socket
          ports. This allows for example wireless MIDI between two
          computers.
        
        * includes programs for playing MIDI files, listing ports and
          serving and forwarding ports over a network.
        
        
        Status
        ------
        
        1.2 is the third stable release.
        
        
        Requirements
        ------------
        
        Mido targets Python 2.7 and 3.2.
        
        
        Installing
        ----------
        
        ::
        
            pip install mido
        
        If you want to use ports::
        
           pip install python-rtmidi
        
        See ``docs/backends/`` for other backends.
        
        
        
        Source Code
        -----------
        
        https://github.com/olemb/mido/
        
        
        License
        -------
        
        Mido is released under the terms of the `MIT license
        <http://en.wikipedia.org/wiki/MIT_License>`_.
        
        
        Contact
        -------
        
        Ole Martin Bjorndalen - ombdalen@gmail.com
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2