This file is indexed.

/usr/lib/python3/dist-packages/terminaltables-3.1.0.egg-info/PKG-INFO is in python3-terminaltables 3.1.0-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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
Metadata-Version: 1.1
Name: terminaltables
Version: 3.1.0
Summary: Generate simple tables in terminals from a nested list of strings.
Home-page: https://github.com/Robpol86/terminaltables
Author: @Robpol86
Author-email: robpol86@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: ==============
        terminaltables
        ==============
        
        Easily draw tables in terminal/console applications from a list of lists of strings. Supports multi-line rows.
        
        * Python 2.6, 2.7, PyPy, PyPy3, 3.3, 3.4, and 3.5 supported on Linux and OS X.
        * Python 2.7, 3.3, 3.4, and 3.5 supported on Windows (both 32 and 64 bit versions of Python).
        
        📖 Full documentation: https://robpol86.github.io/terminaltables
        
        .. image:: https://img.shields.io/appveyor/ci/Robpol86/terminaltables/master.svg?style=flat-square&label=AppVeyor%20CI
            :target: https://ci.appveyor.com/project/Robpol86/terminaltables
            :alt: Build Status Windows
        
        .. image:: https://img.shields.io/travis/Robpol86/terminaltables/master.svg?style=flat-square&label=Travis%20CI
            :target: https://travis-ci.org/Robpol86/terminaltables
            :alt: Build Status
        
        .. image:: https://img.shields.io/codecov/c/github/Robpol86/terminaltables/master.svg?style=flat-square&label=Codecov
            :target: https://codecov.io/gh/Robpol86/terminaltables
            :alt: Coverage Status
        
        .. image:: https://img.shields.io/pypi/v/terminaltables.svg?style=flat-square&label=Latest
            :target: https://pypi.python.org/pypi/terminaltables
            :alt: Latest Version
        
        Quickstart
        ==========
        
        Install:
        
        .. code:: bash
        
            pip install terminaltables
        
        Usage:
        
        .. code::
        
            from terminaltables import AsciiTable
            table_data = [
                ['Heading1', 'Heading2'],
                ['row1 column1', 'row1 column2'],
                ['row2 column1', 'row2 column2'],
                ['row3 column1', 'row3 column2']
            ]
            table = AsciiTable(table_data)
            print table.table
            +--------------+--------------+
            | Heading1     | Heading2     |
            +--------------+--------------+
            | row1 column1 | row1 column2 |
            | row2 column1 | row2 column2 |
            | row3 column1 | row3 column2 |
            +--------------+--------------+
        
        Example Implementations
        =======================
        
        .. image:: https://raw.githubusercontent.com/Robpol86/terminaltables/v3.1.0/docs/examples.png?raw=true
           :alt: Example Scripts Screenshot
        
        Source code for examples: `example1.py <https://github.com/Robpol86/terminaltables/blob/master/example1.py>`_,
        `example2.py <https://github.com/Robpol86/terminaltables/blob/master/example2.py>`_, and
        `example3.py <https://github.com/Robpol86/terminaltables/blob/master/example3.py>`_
        
        .. changelog-section-start
        
        Changelog
        =========
        
        This project adheres to `Semantic Versioning <http://semver.org/>`_.
        
        3.1.0 - 2016-10-16
        ------------------
        
        Added
            * ``git --porcelain``-like table by liiight: https://github.com/Robpol86/terminaltables/pull/31
        
        3.0.0 - 2016-05-30
        ------------------
        
        Added
            * Support for https://pypi.python.org/pypi/colorama
            * Support for https://pypi.python.org/pypi/termcolor
            * Support for RTL characters (Arabic and Hebrew).
            * Support for non-string items in ``table_data`` like integers.
        
        Changed
            * Refactored again, but this time entire project including tests.
        
        Removed
            * ``padded_table_data`` property and ``join_row()``. Moving away from repeated string joining/splitting.
        
        Fixed
            * ``set_terminal_title()`` Unicode handling on Windows.
            * https://github.com/Robpol86/terminaltables/issues/18
            * https://github.com/Robpol86/terminaltables/issues/20
            * https://github.com/Robpol86/terminaltables/issues/23
            * https://github.com/Robpol86/terminaltables/issues/26
        
        2.1.0 - 2015-11-02
        ------------------
        
        Added
            * GitHub Flavored Markdown table by bcho: https://github.com/Robpol86/terminaltables/pull/12
            * Python 3.5 support (Linux/OS X and Windows).
        
        2.0.0 - 2015-10-11
        ------------------
        
        Changed
            * Refactored code. No new features.
            * Breaking changes: ``UnixTable``/``WindowsTable``/``WindowsTableDouble`` moved. Use ``SingleTable``/``DoubleTable``
              instead.
        
        1.2.1 - 2015-09-03
        ------------------
        
        Fixed
            * CJK character width fixed by zqqf16 and bcho: https://github.com/Robpol86/terminaltables/pull/9
        
        1.2.0 - 2015-05-31
        ------------------
        
        Added
            * Bottom row separator.
        
        1.1.1 - 2014-11-03
        ------------------
        
        Fixed
            * Python 2.7 64-bit terminal width bug on Windows.
        
        1.1.0 - 2014-11-02
        ------------------
        
        Added
            * Windows support.
            * Double-lined table.
        
        1.0.2 - 2014-09-18
        ------------------
        
        Added
            * ``table_width`` and ``ok`` properties.
        
        1.0.1 - 2014-09-12
        ------------------
        
        Added
            * Terminal width/height defaults for testing.
            * ``terminaltables.DEFAULT_TERMINAL_WIDTH``
            * ``terminaltables.DEFAULT_TERMINAL_HEIGHT``
        
        1.0.0 - 2014-09-11
        ------------------
        
        * Initial release.
        
        .. changelog-section-end
        
Keywords: Shell Bash ANSI ASCII terminal tables
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Terminals
Classifier: Topic :: Text Processing :: Markup